我有样条图表:
this.chart = {
chart: {
type: 'spline',
zoomType: 'x',
animation: true,
marginRight: 10,
renderTo: chartId
},
如何在用户点击某个按钮后添加新数据(新行)?
private addingAxisData() {
// What should be here?
}
答案 0 :(得分:2)
可以为系列设置数据,而不是为轴设置。
检查Here is a Picture of the error - 它显示了如何动态添加新点。
可以使用this documentation for dynamic interaction with Chart object以相同的方式为整个系列设置数据。