Highcharts test tool

HTML

<script src="http://github.highcharts.com/master/highstock.js"></script>
<script src="http://github.highcharts.com/master/modules/exporting.js"></script>

<div id="container" style="min-width: 300px; height: 300px; margin: 1em"></div>

JavaScript

$('#container').highcharts('StockChart', {
    rangeSelector: {
        selected: 5
    },
    title: {
        text: 'ABC Stock Price'
    },
    tooltip: {
        xDateFormat: '%Y-%m-%d %H:%M',
        pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y:.2f}</b><br/>'
    },
    series: [{
        name: 'ABC',
        data: [[1380671999000,13231],[1380758399000,13300],[1380844799000,13415],[1380931199000,13600],[1381190399000,13687],[1381276799000,13860],[1381363199000,13700],[1381449599000,13800],[1381535999000,13800],[1381795199000,13833],[1381881599000,13961],[1381967999000,14500],[1382054399000,14100],[1382140799000,14214],[1390175999000,13800]],
        tooltip: {
            valueDecimals: 2
        }
    }]
});