Highcharts Demo
author(s): Torstein Hønsi
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
{
yAxis: [{
plotLines: [{
color: 'red',
width: 2,
value: 5.5,
label: {
text: 'Plot line1'
}
},{
color: 'blue',
width: 2,
value: 10,
label: {
text: 'Plot line2'
}
},{
color: 'blue',
width: 2,
value: 15,
label: {
text: 'Plot line3'
}
}]
}]
}