Highstock - 在图表前面的yAxis上画线

时间:2013-04-09 06:51:49

标签: highstock

在此示例中JS Fiddle

该行显示在图表后面。

是否可以在图表前画线?

感谢您的帮助?

代码:

(function() {
$('#container').highcharts('StockChart', {

    chart: {
    },

    yAxis: {
        plotLines: [{
            value: 0.696,
            width: 5,
            color: 'green',
            dashStyle: 'dash',
            label: {
                text: 'Latest value',
                align: 'right',
                y: 12,
                x: 0
            }
        }]
    },

    rangeSelector: {
        selected: 1
    },

    series: [{
       type: 'area',
        name: 'USD to EUR',
        data: usdeur
    }]
});
});

1 个答案:

答案 0 :(得分:1)

尝试使用plotLine zIndex属性。

http://api.highcharts.com/highstock#xAxis.plotLines.zIndex