CHART - Squeeze Bar Spacing 2

by bizamajig

HTML

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

<div id="container" style="width: 400px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function() {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'bar',
                height: 272
            },
            title: {
                text: 'Stacked bar chart'
            },
            xAxis: {
                categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas'],
                tickWidth: 1
            },
            yAxis: {
                min: 0,
                title: {
                    text: 'Total fruit consumption'
                }
            },
            legend: {
                backgroundColor: '#FFFFFF',
                reversed: true
            },
            tooltip: {
                formatter: function() {
                    return '' + this.series.name + ': ' + this.y + '';
                }
            },
            plotOptions: {
                series: {
                    stacking: 'normal',
                    pointWidth: 30,
                    pointPadding: 0
                }
            },
            series: [{
                name: 'John',
                data: [5, 3, 4, 7, 2]},
            {
                name: 'Jane',
                data: [2, 2, 3, 2, 1]},
            {
                name: 'Joe',
                data: [3, 4, 4, 2, 5]}]
        });
    });

});