我试图在极地模式下使用高图。
我想在初始渲染后添加一个新系列,我想没有动画。所以我尝试使用
addSeries with redraw=false and animate=false
,也是redraw with animate=false
,但动画仍在发生。请参阅:
如何禁用动画并跳转到结果?感谢。
答案 0 :(得分:1)
在plotOptions.series对象中将animation属性设置为false:
plotOptions: {
series: {
animation: false
}
}
API参考: http://api.highcharts.com/highcharts/plotOptions.series.animation