Reputation: 13
I'm trying to use highcharts in polar mode.
I want to add a new series after the initial rendering and I'd like to have no animation. So I tried using
addSeries with redraw=false and animate=false
, also redraw with animate=false
, but still the animation happens. Please see:
how can I disable the animation and jump to the result? thanks.
Upvotes: 1
Views: 324
Reputation: 3070
Set animation property to false in plotOptions.series object:
plotOptions: {
series: {
animation: false
}
}
API Reference: http://api.highcharts.com/highcharts/plotOptions.series.animation
Example: http://jsfiddle.net/d_paul/t4Lp7918/
Upvotes: 1