0👍
If you provide a Fiddle or something like that we might be able to give something more concrete, but you can achieve this by setting the min
property on the axes.
Something like that
let options = {
scales: {
yAxes: [{
ticks: {
min: <insert value here>,
}
}]
}
};
Source:stackexchange.com