1👍
✅
Yes, there is a way. You need to set autoSkip
property to false
for x-axis ticks, to show all the labels.
options: {
scales: {
xAxes: [{
ticks: {
autoSkip: false
}
}]
},
...
}
Source:stackexchange.com