[Chartjs]-Set Animation speed – ChartJS?

15👍

Use Chart.defaults.global.animation.duration = 3000;

11👍

Use the animation object

options: {
        animation: {
            duration: 2000,
        },
        ...
}

I haven’t see this documented anywhere, but it’s incredibly helpful to not have to set the speed globally for every chart.

Leave a comment