FusionCharts - column creation in waterfall chart

Created using FusionCharts Suite XT - www.fusioncharts.com

by Nabajeet Sonowal

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>
<div id="chart-container">FusionCharts will render here</div>

CSS

body {
    padding: 10px;
}

JavaScript

FusionCharts.ready(function () {
    var myChart = new FusionCharts({
        "type": "waterfall2d",
            "renderAt": "chart-container",
            "width": "600",
            "height": "350",
            "dataFormat": "json",
            "renderAt": "chart-container",
            "dataSource": {
            "chart": {
                "caption": "Total Profit Calculation",
                    "subcaption": "Last month",
                    "yAxisname": "Amount (In USD)",
                    "numberprefix": "$",
                    "connectordashed": "1",
                    "sumlabel": "Total {br} Profit",
                    "positiveColor": "#6baa01",
                    "negativeColor": "#e44a00",
                    "paletteColors": "#0075c2,#1aaf5d,#f2c500",
                    "baseFontColor": "#333333",
                    "baseFont": "Helvetica Neue,Arial",
                    "captionFontSize": "14",
                    "subcaptionFontSize": "14",
                    "subcaptionFontBold": "0",
                    "showBorder": "0",
                    "bgColor": "#ffffff",
                    "showShadow": "0",
                    "canvasBgColor": "#ffffff",
                    "canvasBorderAlpha": "0",
                    "divlineAlpha": "100",
                    "divlineColor": "#999999",
                    "divlineThickness": "1",
                    "divLineIsDashed": "1",
                    "divLineDashLen": "1",
                    "divLineGapLen": "1",
                    "usePlotGradientColor": "0",
                    "showplotborder": "0",
                    "showXAxisLine": "1",
                    "xAxisLineThickness": "1",
                    "xAxisLineColor": "#999999",
                    "showAlternateHGridColor": "0",
                    "showSumAtEnd": "0",
                    "animation": "0"
            },
                "data": [{
                "label": "List Price",
                    "value": "0",
                  ...