Highcharts DateTime Localization

后端 未结 6 762
伪装坚强ぢ
伪装坚强ぢ 2021-01-31 14:38

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

6条回答
  •  孤城傲影
    2021-01-31 15:26

    Use the shortMonths property:

    Highcharts.setOptions({
        lang: {
        shortMonths: [__('Jan'), __('Feb'), __('Mar'), __('Apr'), __('May'), __('Jun'), 
                      __('Jul'), __('Aug'), __('Sep'), __('Oct'), __('Nov'), __('Dec')]                         },
    });
    

提交回复
热议问题