1👍
✅
well, ok, this was less obvious solution than I could find for ver. 1.0.x
but anyway, here’s the options JSON that helped me
chart = new Chart(ctx, {
type: 'bar',
data: data,
options: {
scales: {
yAxes: [{
ticks: {
suggestedMin: 0
}
}]
}
}
});
and that I found under: http://www.chartjs.org/docs/#scales
Source:stackexchange.com