Adding pseudo canvas top padding to FusionCharts 3.x

HTML

<script src="http://static.fusioncharts.com/code/red/19835/FusionCharts.js"></script>
<div id="chartcontainer">Chart loads here!!</div>

<p>Hack into post render event and reposition the canvas to mimic canvas v padding. Does not work with animation, might throw error with other chart types that do not have canvas. Works with only FusionCharts 3.3.x. Not sure if it works with 3.2.x or whether it will work in future.</p>

JavaScript

var myChart = new FusionCharts({    
    type: "MSColumn2D",
    renderAt: "chartcontainer",
    width: "650", height: "350",
    
    dataFormat: FusionChartsDataFormats.JSON,
    dataSource: {
        caption: "Business Results 20012 vs 20013",
        xaxisname: "Month",
        yaxisname: "Revenue",
        showvalues: "",
        numberprefix: "$",
        placevaluesinside: "1",
        rotateValues: "1",
        animation: "0",
        
        captionPadding: "40", // add extra gap for latter padding
        
        categories: [{
            category: [
                {"label": "Jan"},
                {"label": "Feb"},
                {"label": "Mar"},
                {"label": "Apr"},
                {"label": "May"},
                {"label": "Jun"},
                {"label": "Jul"},
                {"label": "Aug"},
                {"label": "Sep"},
                {"label": "Oct"},
                {"label": "Nov"},
                {"label": "Dec"},
                {"vline": "true",
        "thickness": "2",
        "dashed": "1",
        "linePosition ": "2",
        "dashGap": "2"}  
            ]
        }],
        dataset: [{
            seriesname: "2012",
            data: [
                {"value": "0"},
                {"value": "11500"},
                {"value": "0"},
                {"value": "16800"},
                {"value": "29600"},
                {"value": "32600"},
                {"value": "31800"},
                {"value": "36700"},
                {"value": "29700"},
                {"value": "31900"},
                {"value": "34800"},
                {"value": "24800"}
            ]
        }, {
            "seriesname": "2013",
            "data": [
                {"value": "0"},
                {"value": "0"},
                {"value": "7500"},
                {"value": "15000"},
                {"value": "11000"},
                {"value": "9800"},
                {"value": "11800"},
                {"value":...