[Chartjs]-How to set max/min on x axis to display time range in Chart.js?

1👍

Try this :
yAxes: [{
ticks: {
suggestedMin: 0,
suggestedMax: 100
}
}]

It’s tested and working for me. you can setup for xAxes as well.

Leave a comment