Highcharts Demo
author(s): Torstein Hønsi
by Jon Eyrick
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
Highcharts.chart('container', {
xAxis: {
type: 'datetime'
},
series: [{
data: [
{x:Date.UTC(2010, 0, 1), y:29.9, stroke:"#0000ff"},
{x:Date.UTC(2010, 2, 1), y:71.5, color:"#00ff00"},
{x:Date.UTC(2010, 3, 1), y:106.4, color:"#ff0000"}
]
}]
});