我正在尝试使用高图,使用列。
我的系列数据是几个小时。例如,如果我的数据是23.75,则表示23:45小时。
我想使用我的23.75数据,以便我的列位于正确的位置,但我的列顶部的小文本显示“23:45”。
可能吗 ?我找不到合适的选择。
提前致谢 !
您可以通过formatter
格式化数据标签值
dataLabels: {
enabled: true,
formatter: function () {
return this.y; // you can update datalabel values here
}
}
找到了 !
stackLabels: {
enabled: true,
formatter: function() {
return this.total // custom text label here
}
}