highstock,highchart ,polt lines on Y axis

highstock,highchart
1.在yAxis属性加plotLines加虚线
yAxis : {
title : {
text : 'Exchange rate'
},
plotLines : [{
value : 0.6738,
color : 'green',
dashStyle : 'shortdash',
width : 2,
label : {
text : 'Last quarter minimum'
}
}, {
value : 0.7419,
color : 'red',
dashStyle : 'shortdash',
width : 2,
label : {
text : 'Last quarter maximum'
}
}]
},
2.y轴上加标注区域
plotBands : [{
from : 0.6738,
to : 0.7419,
color : 'rgba(68, 170, 213, 0.2)',
label : {
text : 'Last quarter\'s value range'
}
}]

你可能感兴趣的:(highchart,highstock)