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
Of course if you are using moment in your stack it is pointless to translate again all these strings from scratch:
moment.locale('it-IT') Highcharts.setOptions({ lang: { months: moment.months(), weekdays: moment.weekdays(), shortMonths: moment.monthsShort(), ... } })