MarginLeft issue 2

HTML

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

JavaScript

$(function () {
    $('#container').highcharts({

        chart: {
            type : 'column',
            backgroundColor: 'rgba(248,225,142,0.9)',
            plotBackgroundColor: 'rgba(255,255,255,0.5)',

            spacingLeft: 0,
            marginLeft: 66,
            //marginLeft: 78,
            marginRight: 0,
            spacingRight: 0

        },
        yAxis: {
            title: {
                text: ''
            },
            labels: {

                format: '€ {value:,.1f}',
                style: {
                    whiteSpace: 'nowrap'
                }
            }
        },
        xAxis: {

            categories: ['Jan', 'Feb', 'Mar']
        },

        series: [{
            data: [1129.9, 1171.5, 11106.4]
        }]

    });
});