Chartjs-Chartjs show seconds on the x axis and volume on the y

1👍

You should be fine when you add

options: {
  scales: {
    xAxes: [{
      type: 'linear'
    }]
  }
}

Here’s an example: https://jsfiddle.net/1sxrtcw5/1/

Leave a comment