Highcharts Demo

author(s): Torstein Hønsi

HTML

<script src="http://code.highcharts.com/stock/highstock.js"></script>
<div id="container" style="height: 300px"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        "chart": {
            "type": "column"
        },
        xAxis:{
            ordinal:true
        },
        "series": [{
            "name": "X-Axis",
            "data": [
                [1, 77926],
                [2, 71245],
                [4, 75275],
                [5, 78175],
                [6, 75369],
                [7, 78145],
                [8, 77638],
                [9, 75706],
                [12, 77491]
            ],
            "color": "#1AA4D5"
        }]
    });
});