使用系列数据,但在列Highchart上显示自定义文本

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

我正在尝试使用高图,使用列。

我的系列数据是几个小时。例如,如果我的数据是23.75,则表示23:45小时。

我想使用我的23.75数据,以便我的列位于正确的位置,但我的列顶部的小文本显示“23:45”。

可能吗 ?我找不到合适的选择。

提前致谢 !

enter image description here

javascript highcharts
2个回答
2
投票

您可以通过formatter格式化数据标签值

dataLabels: {
    enabled: true,
    formatter: function () {
        return this.y;     // you can update datalabel values here
    }
}

1
投票

找到了 !

stackLabels: {
      enabled: true,
      formatter: function() {
           return this.total // custom text label here
      }
}
© www.soinside.com 2019 - 2024. All rights reserved.