FusionCharts - Column 2D Chart in JavaScript

Created using FusionCharts Suite XT - www.fusioncharts.com

HTML

<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<!--
    A simple Column 2D chart showing monthly revenue of Harry's SuperMart for last year.
-->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function () {
    var revenueChart = new FusionCharts({
        type: 'bar2d',
        renderAt: 'chart-container',
        width: '500',
        height: '300',
        dataFormat: 'json',
        dataSource: {
            "chart": {
 "caption": "This is the caption which I don't want to wrap",
"captionAlignment": "left",
                "canvasPadding":"0",
                "maxLabelWidthPercent":"10",
"alignCaptionWithCanvas": "0",
"animation": "0",
"paletteColors": "#87C78D",
"bgAlpha": "0",
"showBorder": "0",
"canvasBorderAlpha": "0",
"usePlotGradientColor": "0",
"captionpadding": "0",
"showAxisLines": "1",
"axisLineAlpha": "25",
"divLineAlpha": "10",
"showLabels": "1",
"showValues": "0",
"plotBorderColor": "#000000",
"yAxisMinValue": "0",
"yAxisMaxValue": "100",
"numberSuffix": "%",
"plotSpacePercent": "70",
"showPlotBorder": "0" 
            },

            "data": [
                {
                    "label": "the caption wraps when these labels are long",
                    "value": "420000"
                },
                {
                    "label": "Feb",
                    "value": "810000"
                },
                {
                    "label": "Mar",
                    "value": "720000"
                },
                {
                    "label": "Apr",
                    "value": "550000"
                },
                {
                    "label": "May",
                    "value": "910000"
                },
                {
                    "label": "Jun",
                    "value": "510000"
                },
                {
                    "label": "Jul",
                    "value": "680000"
                },
                {
                    "label": "Aug",
                    "value": "620000"
                },
                {
                    "label": "Sep",
                    "value": "610000"
                },
                {
                    "label":...