Highcharts Stock Demo
author(s):
Torstein Hønsi
by J. Albert Bowden
HTML
<div id="container" style="height: 400px; min-width: 600px"></div>
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/stock/modules/exporting.js"></script>
<script type="text/javascript" src="https://www.highcharts.com/samples/data/large-dataset.js"></script>
JavaScript
Highcharts.stockChart('container', {
title: {
text: 'Start at the first of April'
},
rangeSelector: {
selected: 1
},
series: [{
name: 'Temperature',
data: temperatures,
pointStart: Date.UTC(2004, 3, 1), // first of April
pointInterval: 3600 * 1000, // hourly data
tooltip: {
valueDecimals: 1,
valueSuffix: '°C'
}
}]
});