如何使用高图获得y轴边界线?

时间:2017-10-17 20:41:46

标签: javascript graph highcharts

我想让y轴显示在highchart中

enter image description here

我可以使用x-axis plotline来模拟结果,但它的x轴突出y-axis

    xAxis: {
        type: 'datetime',
        tickLength: 0,
        plotLines: [{
            color: '#000000',
            width: 1,
            value: 1370131200000
        }]
    },

注意:1370131200000是我系列中最低的x值。

有人可以告诉我如何正确定义y-axis吗?

1 个答案:

答案 0 :(得分:0)

使用yAxis.lineWidth属性。默认情况下,它等于0,这就是该行不可见的原因。

API参考: http://api.highcharts.com/highcharts/yAxis.lineWidth