[Chartjs]-How do I stop chart js from auto rescaling the y axis upon calling chart.update()?

1👍

When creating the chart, you could define min and max options for yAxes.ticks. This may be hard-coded value or you may derive them from the chart data.

yAxes: [{
  ticks: {
    max: 350,
    min: 0
  }
}]

Leave a comment