如何用日期时间在x轴上隐藏日期,只留下几小时和几分钟?
例如,在下图中,我想要00:00而不是19. Dec
00:00
19. Dec
得到了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); } } },