FusionCharts - Column 2D Chart in JavaScript

Created using FusionCharts Suite XT - www.fusioncharts.com

by sanjuktamukherjee

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: 'stackedcolumn2d',
        renderAt: 'chart-container',
        width: '350',
        height: '250',
        dataFormat: 'json',
        dataSource: {
  "chart": {
    "xaxisname": "Month",
    "yaxisname": "Revenue",
    "showvalues": "0",
    "numberprefix": "$"
  },
  "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"
        }
      ]
    }
  ],
  "dataset": [
    {
      "seriesname": "2001",
      "data": [
        {
          "value": "27400"
        },
        {
          "value": "29800"
        },
        {
          "value": "25800"
        },
        {
          "value": "26800"
        },
        {
          "value": "29600"
        },
        {
          "value": "32600"
        },
        {
          "value": "31800"
        },
        {
          "value": "36700"
        },
        {
          "value": "29700"
        },
        {
          "value": "31900"
        },
        {
          "value": "34800"
        },
        {
          "value": "24800"
        }
      ]
    },
    {
      "seriesname": "2002",
      "data": [
        {
          "value": "10000"
        },
        {
          "value": "11500"
        },
        {
          "value": "12500"
        },
        {
          "value": "15000"
        },
        {
          "value": "11000"
        },
        {
          "value": "9800"
        },
        {
          "value":...