1

在这个例子中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
    }]
});
});
4

1 回答 1

1

尝试使用plotLine zIndex属性。

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

于 2013-04-09T07:00:04.930 回答