FusionCharts - Gallery Example - Scroll Stacked Column 2D

Created using FusionCharts Suite XT - www.fusioncharts.com

HTML

<script src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
<script src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
<!-- A simple Scroll Stacked Column 2D chart -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
  var salesChart = new FusionCharts({
    type: 'msline',
    dataFormat: 'json',
    renderAt: 'chart-container',
    width: '700',
    height: '400',
    dataSource: {
      "chart": {
        "theme": "fusion",
        "caption": "Sales Comparison",
        "subCaption": "(2016 to 2017)",
        "xaxisname": "Month",
        "yaxisname": "Revenue",
        "numberprefix": "$",
        "lineThickness": "3",
        "flatScrollBars": "1",
        "scrollheight": "10",
        "numVisiblePlot": "12",
        "showHoverEffect": "1"
      },
      "categories": [{
        "category": [{
            "label": "Jan 2016"
          },
          {
            "label": "Feb 2016"
          },
          {
            "label": "Mar 2016"
          },
          {
            "label": "Apr 2016"
          },
          {
            "label": "May 2016"
          },
          {
            "label": "Jun 2016"
          },
          {
            "label": "Jul 2016"
          },
          {
            "label": "Aug 2016"
          },
          {
            "label": "Sep 2016"
          },
          {
            "label": "Oct 2016"
          },
          {
            "label": "Nov 2016"
          },
          {
            "label": "Dec 2016"
          }
        ]
      }],
      "dataset": [{
          "seriesname": "Products",
          "data": [{
              "value": "27400"
            },
            {
              "value": "29800"
            },
            {
              "value": "25800"
            },
            {
              "value": "26800"
            },
            {
              "value": "29600"
            },
            {
              "value": "32600"
            },
            {
              "value": "31800"
            },
            {
              "value": "36700"
            },
            {
              "value": "29700"
            },
            {
              "value": "31900"
            },
            {
    ...