Highcharts Demo

author(s): Torstein Hønsi

by Kishoreajey

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>

<div id="container" style="height: 300px"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            marginTop: 5
        },
        title: {
            text: 'Flats sold per month'
        },

        yAxis: {

            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },

        xAxis: {
            allowDecimals:true,
             title: {
                text: 'Flats'
            },
         },

        series: [{
            data: [1, 3, 5, 2, 3, 9, 6, 7, 3, 5, 4, 3]
        }]
    });
});