Is there any way to set an event listener on when animation is finished on Highcharts redraw? From what I see, a redraw
event fires immediately on change, without waiting for animation. Or maybe there's some other way to wait for when the chart has bee still?
Besides, is it possible to add an event listener to the chart that's already rendered (e.g. via addEventListener
, not by JSON configuration)?
Is there any way to set an event listener on when animation is finished on Highcharts redraw? From what I see, a redraw
event fires immediately on change, without waiting for animation. Or maybe there's some other way to wait for when the chart has bee still?
Besides, is it possible to add an event listener to the chart that's already rendered (e.g. via addEventListener
, not by JSON configuration)?
You can catch animation event and set plete function.
plotOptions: {
series: {
animation: {
plete: function () {
console.log('a1');
}
}
}
},
http://jsfiddle/G63h4/
There is another event after animation is finished which is fired just once:
plotOptions: {
series: {
animation: {
plete: function () {
console.log('a1 - fired after animation of each element');
},
events: {
afterAnimate: function (ev) {
console.log('fired only once for each series');
}
}
}
}
}
You can use the "plete" callback on the animation argument of chart.redraw.
E.g.:
chart.redraw({
plete: function(){
console.log("Animation pleted");
}
});