Chartjs-Attach onAnimationComplete for Chart.js after creation

0👍

there is no onAnimationComplete event you can configure directly on the chart. This has to be done in the options like you did for the onHover and the name has to be different:

chart.options.animation.onComplete = function () {}

Leave a comment