[Chartjs]-Is the implementation different for the chartjs-adapter-luxon in CoreUI's wrapper of ChartJS in React?

1👍

After much testing of ChartJS, CoreUI ChartJS, and react-chartjs-2, CoreUI currently does not implement the adapter properly. I do not know why but if a CoreUI user wants a date adapter, react-chartjs-2 is the way to go. There isn’t much work to migrate over to react-chartjs-2 except for explicitly registering ChartJS pieces.

0👍

You need to install a date adapter for the date library you are using, in your case that being a date adapter for luxon

npm install luxon chartjs-adapter-luxon --save

Then you need to import it where you import and make your chart

import 'chartjs-adapter-luxon';

Leave a comment