如何在图表上的零点处画一条直线

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

我试图在线性图表上以零绘制一条直线。

我通过在y轴上的所有点都绘制为0的另一个系列来工作,它可以正常工作,但是我想将样式更改为'Dash',并删除通过添加到图例的烦人的系列名称,方法是默认。我不希望它出现在图例中。我尝试为此部分将名称设置为”。

        var zeroSerie = {
            data: firstSeries,
            dashstyle: 'Dash'
        };
        zeroSeries.name = '';
        soarChart.addSeries(zeroSerie, false)

enter image description here

我也非常想将颜色设置为红色和'stroke-width':2,

感谢您的帮助

javascript highcharts
1个回答
0
投票
yAxis: { plotLines: [{ value: 0, color: 'red', zIndex: 2, dashStyle: 'dash' }] }


实时演示: http://jsfiddle.net/BlackLabel/zan69hm7/

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

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