[Chartjs]-Why doesn't parsing option work in chartjs?

2👍

I assume it fails when you set parsing to false since you say it works and doesn’t work when it’s true.

When parsing is set to false you need to provide your data in the correct form chart.js uses internally. You are not doing that at the moment.

To change it to the internal data structure you need to remove the labels array and in your data array you put objects which have an x and y key which are the x axis and y axis value for that point

Leave a comment