Highcharts:如何在图表标签上实现多行?

时间:2018-12-17 21:23:58

标签: highcharts

enter image description here

如何实现类似的目的?

1 个答案:

答案 0 :(得分:1)

您可以简单地添加另一个xAxis,将其链接到第一个xAxis并设置适当的刻度间隔。查看我在下面发布给您的演示。

代码:

Highcharts.stockChart('container', {
  xAxis: [{
    type: 'datetime',
    tickInterval: 3 * 3600 * 1000, // 3 hours
    labels: {
      formatter: function() {
        return Highcharts.dateFormat('%H:%M', this.value);
      }
    }
  }, {
    offset: 40,
    type: 'datetime',
    linkedTo: 0,
    tickInterval: 24 * 3600 * 1000 // one day
  }],
  series: [{
    data: data
  }]
});

演示:
https://jsfiddle.net/ngp5o98u/

Api参考:
https://api.highcharts.com/highcharts/xAxis.linkedTo