[Chartjs]-Chart.js v2 setting the y scale options seem to getting ignored

3πŸ‘

βœ…

I think it’s Axes not Axis:

this.options = {
  scales: {
    yAxes: [{
      display: true,
      ticks: {
        beginAtZero: true,
        min: 0,
        max: 100,
        stepSize: 20
       }
    }]
  }
}

Leave a comment