Deimos620
Deimos620
Are there any way to set line width of chart line dynamically? For instance, I want to highlight series line if user click it. Is it something possible?
I am using angular-modal-service as modal service of Angular based web application I am building. Here is my code. ``` ModalService.showModal({ templateUrl: "views/modals/edit_report_draft.html", controller: "DraftReportController" }).then(function(modal){ modal.element.modal(); console.log("modal displayed"); })...
I am using OcLazyLoad to load controller in router. Here is snippet of my router. ``` .state("admin.report_draft", { url: "/report_draft", template: "", controller: "DraftReportController", resolve: { deps: ['$ocLazyLoad', function ($ocLazyLoad)...
I am trying to deploy Rails app with capistrano. Ruby version is managed by rvm. I am using ruby 2.2.3, created gemset manually. > ``` set :rvm_type, :user set :rvm_ruby_version,...
I am implementing social login. To get access token from google oauth2: ``` this.authService.socialSignIn("google").subscribe((data: any) => { this.http.post(url, {access_token: data.token}, httpOptions).subscribe(() => { .... } }); ``` But this doesn't...