BeforeLinkedItemClose event

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>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<!-- Linked Chart: Data String method This sample showcases data in different levels (Quarterly Revenue and Monthly Revenue) through FusionCharts Linked Chart feature. First quarterly data is rendered and then by clicking on any particular quarter, monthly data for that particualr quarter is shown. This feature is highly useful to show complex data in different levels and provide options to zoom into the data through a single chart instance.-->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function () {
    var DrillDown_revenueChart = new FusionCharts({
        type: 'column2d',
        id: 'idP',
        renderAt: 'chart-container',
        width: '400',
        height: '300',
        dataFormat: 'json',
        dataSource: {
            "chart": {
                "caption": "Annual Sales Summary (2010-2013)",
                    "subcaption": "Click on a column to drill-down",
                    "numberprefix": "$",
                    "showvalues": "0",
                    "bgcolor": "FFFFFF",
                    "xaxisname": "Year",
                    "plotgradientcolor": "",
                    "showalternatehgridcolor": "0",
                    "showplotborder": "0",
                    "divlinecolor": "CCCCCC",
                    "canvasborderalpha": "0"
            },
                "data": [{
                "label": "2010",
                    "value": "1161000",
                    "link": "newchart-xml-2010Quarters",
                    "color": "008ee4"
            }, {
                "label": "2011",
                    "value": "1043000",
                    "link": "newchart-xml-2011Quarters",
                    "color": "6baa01"
            }, {
                "label": "2012",
                    "value": "1017000",
                    "link": "newchart-xml-2012Quarters",
                    "color": "f8bd19"
            }, {
                "label": "2013",
                    "value": "1156000",
                    "link": "newchart-xml-2013Quarters",
                    "color": "e44a00"
            }],
                "linkeddata": [{
                "id": "2010Quarters",
                    "linkedchart": {
                    "chart": {
                        "caption": "Quarterly Sales Summary (2010)",
                            "subcaption": "Click on a column to drill-down",
                            "xaxisname": "Quarter",
                            "yaxisname": "Sales",
                   ...