Limit labels number on Chart.js line chart
I want to reduce the number of label of my line chart "Only" when displaying on the small device. From the post above, the solution is like this;
xAxes: [{
type: 'time',
ticks: {
autoSkip: true,
maxTicksLimit: 12
}
}]
This is a good solution, but I want to keep all my 24 labels when showing on desktop (lg)
. I want to hide half of the labels when displaying on phone only (xs)
.