具有多个Y轴的HighCharts绘图线

时间:2015-03-16 02:33:40

标签: highcharts

我已经能够生成一个具有多个y轴的HighCharts图表,如chart with multiple y-axis,我已经能够生成一个带有单个y轴的图表并绘制如此chart with plot lines and single y-axis的图线。是否有可能将两者结合起来,以便我可以有多个y轴和至少一个绘图线?我不确定从哪里开始。

提前致谢,

1 个答案:

答案 0 :(得分:9)

是的。您应该简单地组合每个图表选项的代码。在您想要plotLines的轴上包含 plotLines

{ // Secondary yAxis
        plotLines: [{
            value: 50,
            color: 'green',
            dashStyle: 'shortdash',
            width: 2,
            zIndex: 10,
            label: {
                text: 'Minimum'
            }
        }, {
            value: 150,
            color: 'red',
            dashStyle: 'shortdash',
            width: 2,
            zIndex: 10,
            label: {
                text: 'Maximum'
            }
        }],

        ...
}

这是DEMO