在极坐标模式下使用Highcharts时无法禁用动画

时间:2017-03-20 13:21:35

标签: animation highcharts

我试图在极地模式下使用高图。 我想在初始渲染后添加一个新系列,我想没有动画。所以我尝试使用 addSeries with redraw=false and animate=false,也是redraw with animate=false,但动画仍在发生。请参阅:

http://jsfiddle.net/6u73csk0/

如何禁用动画并跳转到结果?感谢。

1 个答案:

答案 0 :(得分:1)

在plotOptions.series对象中将animation属性设置为false:

plotOptions: {
    series: {
        animation: false
    }
}

API参考: http://api.highcharts.com/highcharts/plotOptions.series.animation

实施例: http://jsfiddle.net/d_paul/t4Lp7918/