Sign in to follow this  
G30071

jQuery Plugin - Configuring Linked Charts

Recommended Posts

Hi,

 

For used FusionCharts jQuery Plugin

 

Drill-down Charts

 

 

 

html:

<div id="chart_Master"> </div>
<div id="chart_Detal"> </div>

js:

   $("#chart_Master").insertFusionCharts({
        type: 'scrollstackedcolumn2d',
        id: 'chartDox_1',
        width: '100%',
        height: '380',
        containerBackgroundOpacity : '0',
        dataFormat: 'xmlurl',
        dataSource: 'myfile.xml'
       
    }); // end insertFusionCharts

Creating and Configuring Linked Charts ???

 $('#chart_Master').configureLink({      
              type: "pie3d",
              renderAt : "chart_Detal",
              width: "100%", 
              height: "380
  });

 

 

 

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this