[AngularJS] Re: Developing an Angular Application

2018-01-09 Thread Zlatko Đurić
In addition to downloading and installing Node.js, and @angular/cli and all the core angular frameworks, as Sander says, I suggest the following list, too. Libs: - your UI library of choice (like Material Design -> then @angular/material and @angular/cdk, or bootstrap: ngx-bootstrap or

[AngularJS] Second y axis can not be assigned to the line chart in ng2 charts

2018-01-09 Thread Andreas Illenseer
I have created a bar chart with line chart in ng2-charts and have the following problem: I have inserted two y axes, but the second axis (right) can not be properly mapped to the line chart. Do you know how that works? Code: HTML:

[AngularJS] Second y axis can not be assigned to the line chart in ng2 charts

2018-01-09 Thread Andreas Illenseer
I have created a bar chart with line chart in ng2-charts and have the following problem: I have inserted two y axes, but the second axis (right) can not be properly mapped to the line chart. Do you know how that works? I inserted the code as a pic. HTML:

[AngularJS] Re: AngularJS passing function to modal ("this" is not referring to the controller I want)

2018-01-09 Thread Charly Terrier
Cannot figure out how to solve it, neither got time to create a plunker... Anyway I did it a different way : **The parent controller** export class Controller implements IComponentController { ... constructor( private $scope: IScope, private readonly

[AngularJS] issue with having ng-form inside ng-repeat after migrating from Angular 1.2 to Angular 1.6

2018-01-09 Thread Arun Sekar
All form controllers in the Scope inside the ng-repeat are set to undefined. Whenever the value of object in ng-repeat changes, Earlier version (AngularJs 1.2), the sequence of execution is as below, $destroy -> removeController(formController) addControl(formConroller) New version