我在angular2应用程序中使用ZingChart。 我正在尝试更新折线图的scale-x。 但是找不到那个api:
export class App {
charts : Chart[];
@ViewChild(ZingChart)
chart: ZingChart;
constructor() {
this.name = 'Angular2'
this.charts = [{
id : 'chart-1',
data : {
type : 'line',
series : [{
values :[2,3,4,5,3,3,2]
}],
},
height : 400,
width : 600
}]
}
update(){
this.charts[0].data.series[0].values = [1,2,3,4,5,6];
//this.charts[0].data.x.value=[1,2,3,4,5,6]; ???
this.chart.update();
}
}
这是一个plunkr