Advertisement
Pauan

amcharts3-angular2 <amCharts> element

Mar 26th, 2017
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @Component({
  2. template: `<amCharts [id]="id" [options]="options" [style.width.%]="100" [style.height.px]="500"></amCharts>`
  3. })
  4. export class AppComponent {
  5. private id = "chartdiv";
  6.  
  7. private options = {
  8. "type": "serial",
  9. "theme": "light",
  10. "dataProvider": []
  11. ...
  12. };
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement