[Chartjs]-Chartjs with local dates

1👍

I needed to give the locale to my date library which is Luxon for me:

luxon.Settings.defaultLocale = "fi";

Moment does it in a similar way but i haven’t tested this:

moment.locale("fi");

here is some more information on it

Leave a comment