1👍
You can set your options for y axis to have max number of ticks on display like this.`
options : {
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
minTicksLimit: 5,
maxTicksLimit: 7,
autoSkip: true
}
}],
},
responsive: true
},`
be mindful of axEs not axIs…
- Chartjs-Alter angular js chart wrapper to support drawing custom lines
- Chartjs-Combine chart.js bar and line charts with differing granularity
Source:stackexchange.com