Chartjs-Chart JS: Set Spacing Between Ticks on Y-Axis

0👍

If not much different data you can use this to set range

//EXAMPLE DATA [533,743,612,983]
ticks: {
    beginAtZero: false,
    stepSize: 100,
    max: 1000
    min: 500
}

Leave a comment