动画结束回调上的chart.js

vit*_*itr 2 javascript html5 animation vue.js chart.js

chart.js是否支持对特定事件的各种回调?我对“动画结束”事件最感兴趣,但是很高兴知道其他事件是否得到支持。
如果这不是一种选择,您知道任何解决方法吗?我使用的是jQueryvue.js,当chart.js完成图表动画时,我只需要在页面上显示一些其他文本(完全在图表本身之外)。

ill*_*ist 6

对于Chart.Js 2.6.0

options: {
    cutoutPercentage: 90,
    animation: {
        duration: 2000,
        onProgress: function(animation) {
            $progress.attr({
                value: animation.animationObject.currentStep / animation.animationObject.numSteps,
            });
        },
        onComplete: function(animation) {
            alert('onAnimationComplete')
        }
    }
},
Run Code Online (Sandbox Code Playgroud)

看到这个codepen https://codepen.io/shivabhusal/pen/XaZQaW