0👍
They have an option for this beginAtZero
scales: {
y: {
beginAtZero: true
}
}
- Chartjs-How to use ChartJS toBase64Image in Vue?
- Chartjs-How to get the index of the barchart label that has been clicked with react-chart js-2?
0👍
thanks, this fixed it:
scales: {
yAxes: [{
display: true,
ticks: {
beginAtZero: true,
min: 0
}
}]
},
Source:stackexchange.com