Highcharts Demo

author(s): Torstein Hønsi

by Jayson Buquia

HTML

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

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

JavaScript

Highcharts.chart('container', {

    chart: {
        type: 'column',
        marginLeft: 0,
        marginRight: 20,
        paddingRight: 10,
    },
    title: {
        text: 'yAxis.title.offset is set to zero'
    },
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    yAxis: {
    		opposite: true,
        lineWidth: 1,
        tickWidth: 1,
        title: {
            align: 'high',
            offset: 0,
            text: 'Rainfall (mm)',
            rotation: 0,
            y: -10,
            x: -50
        },
        labels: {
        	align: 'right',
          y: -5,
          /* x: -5, */
          /* reserveSpace: true,
          offset: 0 */
				}
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]

});