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: 'column2d',
        renderAt: 'chart-container',
        width: '500',
        height: '300',
        dataFormat: 'json',
        dataSource: {
  "chart": {
    "caption": "Total Appointments Scheduled",
    "yaxisname": "Count",
    "xaxisname": "Months",
    "outcnvbasefont": "Lato,Open Sans, sans-serif",
    "formatnumberscale": "0",
    "palettecolors": "#3366CC, #FF9900,#109618, #990099, #0099C6,#DD4477,#66AA00, #B82E2E, #316395, #994499,#22AA99, #AAAA11, #6633CC,#E67300, #8B0707, #651067, #329262, #5574A6, #3B3EAC,#B77322, #16D620, #3D4A53",
    "plotgradientcolor": " ",
    "outcnvbasefontsize": "12",
    "outcnvbasefontcolor": "505050",
    "showplotborder": "0",
    "showborder": "0",
    "bgcolor": "FFFFFF"
  },
  "data": [
    {
      "label": "Jan",
      "value": "12855",
      "link": "newchart-json-1"
    },
    {
      "label": "Feb",
      "value": "11321",
      "link": "newchart-json-2"
    },
    {
      "label": "Mar",
      "value": "12187",
      "link": "newchart-json-3"
    },
    {
      "label": "Apr",
      "value": "12646",
      "link": "newchart-json-4"
    },
    {
      "label": "May",
      "value": "12663",
      "link": "newchart-json-5"
    },
    {
      "label": "Jun",
      "value": "12672",
      "link": "newchart-json-6"
    },
    {
      "label": "Jul",
      "value": "13114",
      "link": "newchart-json-7"
    },
    {
      "label": "Aug",
      "value": "12262",
      "link": "newchart-json-8"
    },
    {
      "label": "Sep",
      "value": "12870",
      "link": "newchart-json-9"
    },
    {
      "label": "Oct",
      "value": "14036",
      "link": "newchart-json-10"
    },
    {
      "label": "Nov",
      "value": "11737",
      "link": "newchart-json-11"
    },
    {
      "label": "Dec",
      "value": "11266",
      "link": "newchart-json-12"
    }
  ],
  "linkeddata": [
    {
      "id": "1",
      "linkedchart": {
 ...