Highcharts计量表定制

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

我需要在压力表的中间显示一条白线,如下所示:enter image description here

但是我无法在Highcharts量表中找到适合该需求的自定义选项。谁能帮忙吗?

我不需要“量规”箭头。我只想要50%的白色分隔符。

highcharts
1个回答
0
投票

您可以使用plotLines选项添加分隔符:

yAxis: {
    plotLines: [{
        value: 100,
        width: 4,
        color: '#fff',
        zIndex: 4

    }],
    ...
}

实时演示: https://jsfiddle.net/BlackLabel/1mj80dc6/

API参考: https://api.highcharts.com/highcharts/yAxis.plotLines

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