Chartjs-Chart.js stepsize with multiple yAxis scales

0đź‘Ť

âś…

Thanks to timclutton,

The min an max where reversed..

"ticks": {
    "max": 0,
    "min": 14,
    "stepSize": 7
}

should be:

"ticks": {
    "max": 14,
    "min": 0,
    "stepSize": 7
}

Leave a comment