Sono relativamente nuovo alle applicazioni Web e quindi sto appena iniziando ad utilizzare Angular2 (NON ho usato angularJS) e Typescript. Sto cercando di usare Zingchart per tracciare un grafico. Ho seguito l'avvio rapido di 5 minuti e il tutorial nella pagina angular2 e ho avuto un'idea decente di come funziona. Ho seguito le istruzioni sulla pagina Zingchart per creare un grafico sulla pagina web utilizzando i due strumenti (https://blog.zingchart.com/2016/03/16/angular-2-example-zingchart/). Tuttavia, mi sembra di avere problemi. 1) Non riesco a importare AfterView da @ angular/core. Anche se la pagina dice che devo usare angular2/core, sto usando @ angular/core come cartella sorgente da cui importare i moduli. angular2/core non viene riconosciuto. 2) Quando ci sono funzioni legate all'oggetto zingchart (esempio: zingchart.render(), zingchart.exec()), c'è un errore che dice che la zingchart non può essere trovata. Non sono sicuro di cosa stia succedendo qui.Strumenti grafici - Angular2
import { Component, NgZone, AfterViewInit, OnDestroy } from '@angular/core';
class Chart {
id: String;
data: Object;
height: any;
width: any;
constructor(config: Object) {
this.id = config['id'];
this.data = config['data'];
this.height = config['height'] || 300;
this.width = config['width'] || 600;
}
}
@Component({
selector : 'zingchart',
inputs : ['chart'],
template : `
<div id='{{chart.id}}'></div>
`
})
class ZingChart implements AfterViewInit, OnDestroy {
chart : Chart;
constructor(private zone:NgZone) {
}
ngAfterViewInit() {
this.zone.runOutsideAngular(() => {
zingchart.render({
id : this.chart['id'],
data : this.chart['data'],
width : this.chart['width'],
height: this.chart['height']
});
});
}
ngOnDestroy() {
zingchart.exec(this.chart['id'], 'destroy');
}
}
//Root Component
@Component({
selector: 'my-app',
directives: [ZingChart],
template: `
<zingchart *ngFor="#chartObj of charts" [chart]='chartObj'></zingchart>
`,
})
export class App {
charts : Chart[];
constructor() {
this.charts = [{
id : 'chart-1',
data : {
type : 'line',
series : [{
values :[2,3,4,5,3,3,2]
}],
},
height : 400,
width : 600
}]
}
}
Si prega di inviare il codice che dimostra ciò che hai provato. –
'angular2/...' è per le versioni beta '@angular/...' per le versioni RC.x. –