[Vuejs]-How to set vue chartjs begin at zero?

0👍

write that inside options.

options: {
    scales: {
        xAxes: [{
            ticks: {
                beginAtZero: true
            }
        }]
    }
}

Here is the link https://www.chartjs.org/docs/latest/developers/updates.html from Chartjs

Leave a comment