将自定义x轴标签添加到highstock图表

问题描述 投票:-2回答:1

我想在图表的末尾添加一个额外的x轴标签,如下图所示。

enter image description here

这可能吗?

我已经检查了API,但没有看到任何关于添加或修改单个标签的信息。

谢谢!

highcharts
1个回答
0
投票

您可以使用formatter函数自定义标签:

xAxis: {
    labels: {
        formatter: function() {
            if (this.isLast) {
                return 'Now'
            }

            return Highcharts.dateFormat('%H:%M:%S.%L', this.value);
        }
    }
}

现场演示:http://jsfiddle.net/BlackLabel/5s3gbawr/

API:https://api.highcharts.com/highcharts/xAxis.labels.formatter

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