在此示例中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
}]
});
});
答案 0 :(得分:1)
尝试使用plotLine
zIndex
属性。