0👍
let options = {
scales: {
xAxes: [{
ticks: {
max: 5,
min: 0,
stepSize: 1
}
}]
}
};
I haven’t tested but it should work as per docs.
Source:stackexchange.com
0👍
let options = {
scales: {
xAxes: [{
ticks: {
max: 5,
min: 0,
stepSize: 1
}
}]
}
};
I haven’t tested but it should work as per docs.