Highchart - zone example
could use for Baltic FFAs (x zone) or Baltic Panelist variance with (y zone)
by Ben Clayton
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
$(function () {
$('#container').highcharts({
series: [{
data: [0.4,0.46,0.5, 0.9,1.1, 1.4, 1.3, 1.5, 1.6, 1.65,1.64],
zoneAxis : "x",
zones: [{
value: 2,
color: '#ff0000'
}, {
color: '#8080ff'
}]
}]
});
});