Chartjs-Data is not displayed in chartjs when using parsing: false;

0👍

This is because the internal format of a line chart the x value is a category scale so your x values need to be strings instead of numbers or you need to change it to a linear scale by setting: options.scales.y.type to 'linear'

Leave a comment