Highstock系列工具提示数据

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

任何人都可以告诉我们如何添加分钟数。和最大工具提示中X轴的值。例如,如果图表显示的日期为2018年4月至2019年4月,我们希望将此信息包含在每个系列的工具提示中。

非常感谢

highcharts
1个回答
0
投票

使用tooltip.formatter功能来自定义工具提示并在其中附加该信息。

演示:https://jsfiddle.net/BlackLabel/5n38s1jx/

  tooltip: {
    formatter() {
      let point = this,
            xAxis = this.series.xAxis,
            output;

      output =  `<span style='font-size: 10px'>${point.key}</span><br/>
      <span style="color:${point.color}">●</span> ${point.series.name}: <b>${point.y}</b><br/>
      xAxis min: ${xAxis.min} && xAxis max: ${xAxis.max}`

      return output
    }   
  },

API:https://api.highcharts.com/highcharts/tooltip.formatter

© www.soinside.com 2019 - 2024. All rights reserved.