标签: highcharts
如何用日期时间在x轴上隐藏日期,只留下几小时和几分钟?
例如,在下图中,我希望00:00代替19. Dec
00:00
19. Dec
答案 0 :(得分:0)
从https://forum.highcharts.com/highcharts-usage/highcharts-hide-date-on-x-axis-and-have-only-hours-t39998/
xAxis: { labels: { formatter: function() { return Highcharts.dateFormat("%H:%M", this.value); } } },