[Chartjs]-Papaparse with chart.js not displaying csv value on the x axis

1👍

Since you havent changed the scale type of the x axis its a category scale, the category scale is using the indexes of the ticks as the internal data format so you are not getting your labels, to get your labels you need to make your callback like so according to the docs tip:

callback: function(value, index, values) {
  return this.getLabelForValue(value).toLocaleString('en-US');
}

Leave a comment