FusionCharts - Gallery Example - Multi-series Spline Area 2D Chart in JavaScript

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>
<!-- 
Multi-Series Spine-Area chart.
-->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
  var visitChart = new FusionCharts({
    type: 'mssplinearea',
    renderAt: 'chart-container',
    width: '700',
    height: '400',
    dataFormat: 'json',
    dataSource: {
      "chart": {
        "theme": "fusion",
        "caption": "Number of Footfalls Last Week",
        "subCaption": "Garden Groove harbour vs Crompton-Rancho Dom",
        "xAxisName": "Day",
        "yAxisName": "No. of Footfalls",
        "showValues": "1",
        "numberPrefix": "$ ",
        "showXAxisLine": "1",
        "toolTipColor": "#ffffff",
        "toolTipBorderThickness": "0",
        "toolTipBgColor": "#000000",
        "toolTipBgAlpha": "80",
        "toolTipBorderRadius": "2",
        "toolTipPadding": "5"
      },

      "categories": [{
        "category": [{
            "label": "Mon"
          },
          {
            "label": "Tue"
          },
          {
            "label": "Wed"
          },
          {
            "vline": "true",
            "lineposition": "0",
            "color": "#F2726F",
            "labelHAlign": "right",
            "labelPosition": "0",
            "label": "National holiday"
          },
          {
            "label": "Thu"
          },
          {
            "label": "Fri"
          },
          {
            "label": "Sat"
          },
          {
            "label": "Sun"
          }
        ]
      }],
      "dataset": [{
          "seriesname": "Garden Groove harbour",
          "data": [{
              "value": "15123"
            },
            {
              "value": "14233"
            },
            {
              "value": "21507"
            },
            {
              "value": "9110"
            },
            {
              "value": "14829"
            },
            {
              "value": "17503"
            },
            {
              "value": "20202"
            }
          ]
        },
        {
          "seriesname": "Crompton-Rancho Dom",
          "data": [{
       ...