Really small column chart widths

by Regisc

HTML

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

JavaScript

$(function() {
    var chart = new Highcharts.Chart({

        chart: {
            renderTo: 'container',
            type: 'column'
        },

        xAxis: {
            type: 'datetime'
        },
        
        plotOptions: {
            series: {
                pointRange: 30 * 24 * 3600 * 1000 // one month
            }
        },
        series: [{
            data: [
                {
                x: 1012521600000,
                y: 7432}
            ]
        },
        {
            data: [
                {
                x: 1017619200000,
                y: 5672}
                     ]}]

    });
});