Highcharts标签日期格式

问题描述 投票:0回答:1

我们当前正在使用日期显示为'2月18日,星期二'的高图表。

我们如何将这种格式更改为'2月18日星期二'

highcharts date-format
1个回答
0
投票

进行了一些研究之后,下面的工作是无缝的:

xAxis: {
        dateTimeLabelFormats: {
            day: '%a  %e  %b'  
         } 
       }

也请参考https://api.highcharts.com/highcharts/xAxis.dateTimeLabelFormats

© www.soinside.com 2019 - 2024. All rights reserved.