Highcharts test tool

by tfischer7103

HTML

<script src="http://github.highcharts.com/v3.0Beta/highcharts.js"></script>
<script src="http://github.highcharts.com/v3.0Beta/highcharts-more.js"></script>

<div id="container" style="height: 400px; margin: 0 auto"></div>

JavaScript

$(function () {


    
    	$('#container').highcharts({
    	
		    chart: {
		        type: 'column'
		    },
		    
		    xAxis: {
		        type: 'datetime'
		    },
		    
		    yAxis: {
		        type: 'datetime'
		    },
		
           
		    series: [{
		        name: 'Temperatures',
                pointStart: new Date().getTime(),
                pointInterval: 24 * 3600 * 1000, 
		        data: [1.5 * 60 * 1000,1.2 * 60 * 1000,2.5 * 60 * 1000,1.9 * 60 * 1000,],
		    }]
		
		});
    
});