如何在图表中动态设置新的 yAxis 数据(highcharts + angular2(4))?
How to set new yAxis data in chart dynamically (highcharts + angular2(4))?
我有样条图:
this.chart = {
chart: {
type: 'spline',
zoomType: 'x',
animation: true,
marginRight: 10,
renderTo: chartId
},
如何在用户点击某个按钮后添加新数据(新行)?
private addingAxisData() {
// What should be here?
}
可以为系列设置数据,不能为轴设置数据。
检查 this documentation for dynamic interaction with Chart object - 它显示了如何动态添加新点。
可以使用setData相同的方式为整个系列设置数据。
我有样条图:
this.chart = {
chart: {
type: 'spline',
zoomType: 'x',
animation: true,
marginRight: 10,
renderTo: chartId
},
如何在用户点击某个按钮后添加新数据(新行)?
private addingAxisData() {
// What should be here?
}
可以为系列设置数据,不能为轴设置数据。
检查 this documentation for dynamic interaction with Chart object - 它显示了如何动态添加新点。
可以使用setData相同的方式为整个系列设置数据。