admin管理员组文章数量:1341409
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");
}
});
本文标签: javascriptHighcharts event on animation completeStack Overflow
版权声明:本文标题:javascript - Highcharts event on animation complete? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743636069a2513918.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论