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)?
- But in general what is your goal, for which purpose you need to have "funished animation" event? – Sebastian Bochan Commented Apr 30, 2014 at 10:12
- On high level, I am writing Selenium automation for a product where Highcharts are used, and I cannot think of many ways to wait until the chart has rendered and bee still. Because of variety of charts that's not very feasible to poll for some DOM change, however if there's no way to hook up an event listener, I'll have to go that way. – Actine Commented Apr 30, 2014 at 10:21
3 Answers
Reset to default 11You 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");
}
});
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743636069a4482169.html
评论列表(0条)