Chartjs-Chart.js time x-axis – start ticks at specific time

0👍

you can add a min property like so:

scales: {
  x: {
    min: _this.startMS
  }
}

0👍

Answering my own question – for my purposes, setting min: didn’t work, so instead I’ve disabled the scale and used the annotations plugin to draw my own

Leave a comment