Highchart - zone example
could use for Baltic "futures"
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: [2,1, 0, 5, 10, 15, 10, 10, 5, 3, 2],
zoneAxis : "x",
zones: [{
value: 1.5,
color: '#ff0000'
}, {
color: '#8080ff'
}]
}]
});
});