Scroll Multisereis Column

Created using FusionCharts Suite XT - www.fusioncharts.com

by Nabajeet Sonowal

HTML

<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js"></script>
<!-- Scroll Combination 2D Chart with Column, Line and Area data series
-->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function () {
    var revenueCompChart = new FusionCharts({
        type: 'scrollcombi2d',
        renderAt: 'chart-container',
        width: '550',
        height: '400',
        dataFormat: 'json',
        dataSource: {
            "chart": {
                "caption": "Actual Revenue, Targeted Revenues & Profits",
                "subCaption": "FY 2012 - FY 2013",
                "xAxisname": "Month",
                "yAxisName": "Amount (In USD)",
                "numberPrefix": "$",
                "numVisiblePlot" : "12"
            },
            "categories": [
                {
                    "category": [
                        { "label": "Jan 2012" },
                        { "label": "Feb 2012" },
                        { "label": "Mar 2012" },
                        { "label": "Apr 2012" },
                        { "label": "May 2012" },
                        { "label": "Jun 2012" },
                        { "label": "Jul 2012" },
                        { "label": "Aug 2012" },
                        { "label": "Sep 2012" },
                        { "label": "Oct 2012" },
                        { "label": "Nov 2012" },
                        { "label": "Dec 2012" }
                    ]
                }
            ],
            "dataset": [
                {
                    "seriesName": "Actual Revenue",
                    "data": [
                        { "value": "16000" }, 
                        { "value": "20000" }, 
                        { "value": "18000" }, 
                        { "value": "19000" }, 
                        { "value": "15000" }, 
                        { "value": "21000" }, 
                        { "value": "16000" }, 
                        { "value": "20000" }, 
                        { "value": "17000" }, 
                        { "value": "25000" }
                    ]
                }, 
                {
                    "seriesName": "Projected...