HighCharts - 在x轴上隐藏日期,只有几小时和几分钟

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

如何用日期时间在x轴上隐藏日期,只留下几小时和几分钟?

例如,在下图中,我想要00:00而不是19. Dec

enter image description here

highcharts
1个回答
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);
    }
  }
},
© www.soinside.com 2019 - 2024. All rights reserved.