FusionCharts - Gallery Example - Area 2D Chart

Created using FusionCharts Suite XT - www.fusioncharts.com

HTML

<script src="https://www.fusioncharts.com/lib/fcassets/3.12.2/fusioncharts.js"></script>
<!-- A simple implementation of Area 2D chart showing daily trend of liquor sales for the last week -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
  var salesChart = new FusionCharts({
      type: 'area2d',
      renderAt: 'chart-container',
      width: '400',
      height: '300',
      dataFormat: 'json',
      dataSource: {
        "chart": {
          "caption": "Sales of Liquor",
          "subCaption": "Last week",
          "xAxisName": "Day",
          "yAxisName": "Sales (In USD)",
          "numberPrefix": "$",
          "paletteColors": "#0075c2",
          "bgColor": "#ffffff",
          "showBorder": "0",
          "showCanvasBorder": "0",
          "plotBorderAlpha": "10",
          "usePlotGradientColor": "0",
          "plotFillAlpha": "50",
          "showXAxisLine": "1",
          "axisLineAlpha": "25",
          "divLineAlpha": "10",
          "showValues": "1",
          "showAlternateHGridColor": "0",
          "captionFontSize": "14",
          "subcaptionFontSize": "14",
          "subcaptionFontBold": "0",
          "toolTipColor": "#ffffff",
          "toolTipBorderThickness": "0",
          "toolTipBgColor": "#000000",
          "toolTipBgAlpha": "80",
          "toolTipBorderRadius": "2",
          "toolTipPadding": "5"
        },

        "data": [{
            "label": "Mon",
            "value": "4123"
          },
          {
            "label": "Tue",
            "value": "4633"
          },
          {
            "label": "Wed",
            "value": "5507"
          },
          {
            "label": "Thu",
            "value": "4910"
          },
          {
            "label": "Fri",
            "value": "5529"
          },
          {
            "label": "Sat",
            "value": "5803"
          },
          {
            "label": "Sun",
            "value": "6202"
          }
        ]
      }
    })
    .render();
});