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

时间:2017-12-19 16:38:29

标签: highcharts

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

例如,在下图中,我希望00:00代替19. Dec

enter image description here

1 个答案:

答案 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);
    }
  }
},