1👍
✅
You defined ticks.min
on the x-axis instead to do it on the y-axis.
Instead of doing this…
xAxes: [{
ticks: {
min : 0,
autoSkip: false
}
}]
try this:
yAxes: [{
ticks: {
min : 0,
stepSize: 10
}
}]
Source:stackexchange.com