[Chartjs]-ChartJs, stepSize doesn't working for type 'day'

1👍

The stpeSize option, used to calculate the differences among ticks, must be defined in time node and not in the ticks:

EDIT: the CHART.JS doc is saying to use stepSize in time node and not in ticks, therefore it’s not a bug of CHART.JS.

time: {
  unit: 'day',
  parser: 'dd.MM.yyyy',
  stepSize: 4
},

Leave a comment