Chartjs-How can I render multiple charts in chartjs?

1👍

what you are looking for is called rendering multiple datasets, to do that you should put the date inside labels array and the other arrays of data inside datasets array each in a separate object.
I tried to implement an example using your data is a sandbox https://codesandbox.io/s/react-chartjs-forked-flj74
you can just reformat the dates to your needs

Leave a comment