Time on X Axis
author(s):
Torstein Hønsi
Roydon D'Souza
by Roydon DSouza
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px; width: 400px"></div>
JavaScript
$(function () {
$('#container').highcharts({
xAxis: {
startOnTick: false,
type: 'datetime',
labels: {
formatter: function () {
return Highcharts.dateFormat('%d %b', this.value);
}
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 35.6,456,56],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 3 * 24 * 3600 * 1000,
threshold:200,
negativeColor: 'red'
}]
});
});