Can someone point me to how I can localize the date-related Strings which are hardcoded in the HighCharts js-file. For instance, instead of the default \'Feb\' date label in the
To localize weekdays, Highcharts.setOptions
should be called before chart creation and contain the new weekday names:
Highcharts.setOptions({
lang: {
weekdays: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi']
} });
Note that the array should start with the name for Sunday not Monday (the first day of the work week).
Example on jsFiddle