Enrico Lorenzoni
Enrico Lorenzoni

Reputation: 13

Can't disable animation when using Highcharts in polar mode

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:

http://jsfiddle.net/6u73csk0/

how can I disable the animation and jump to the result? thanks.

Upvotes: 1

Views: 324

Answers (1)

pawel_d
pawel_d

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

Related Questions