[Chartjs]-Chart.js onAnimationComplete doesn't work

11👍

Faced same problem.
Use onComplete() in options.animation instead:

options:{
    animation:{
        onComplete : function(){
            /*Your code here*/
        }
    }
}

Leave a comment