Sign in to follow this  
learning FC

Drill Down Charts

Recommended Posts

Hi,

I am creating a drilldown chart with different chart type at each level,

I am using javascript charts, i have read in docs about configurelink(), but could not able to implement this,

 

to render chart, i am giving the chart type like this(without .swf):

var myChart = new FusionCharts( "Column2D", "myChartId", "320", "250", "0", "1" );

 

Kindly help!

Share this post


Link to post
Share on other sites

Hi,

 

Hi,

I am creating a drilldown chart with different chart type at each level,

I am using javascript charts, i have read in docs about configurelink(), but could not able to implement this,

 

to render chart, i am giving the chart type like this(without .swf):

var myChart = new FusionCharts( "Column2D", "myChartId", "320", "250", "0", "1" );

 

Kindly help!

 

Please note that in LinkedCharts, by default, the descendant charts used the same configuration and chart type as parent chart. However, FusionCharts JavaScript class allows you to configure each aspect of the descendant charts LinkedCharts using the function "configureLink()" for each chart instance. Using this function, you can pass all your desired configurations for the descendant charts.

Ref.- http://docs.fusioncharts.com/charts/contents/?JavaScript/API/Methods.html#configurelink

 

You can pass all the properties that a FusionCharts constructor accepts.

Ref.- http://docs.fusioncharts.com/charts/contents/?JavaScript/API/Methods.html#chartparams

 

Additionally, you can also configure the overlay button using "overlayButton" property.

Ref.- http://docs.fusioncharts.com/charts/contents/?JavaScript/API/Methods.html#overlaybutton

 

Hope this helps. :)

Share this post


Link to post
Share on other sites

hi

could you please upload a sample code for this issue.

Thanks

 

Hi,

 

 

 

Please note that in LinkedCharts, by default, the descendant charts used the same configuration and chart type as parent chart. However, FusionCharts JavaScript class allows you to configure each aspect of the descendant charts LinkedCharts using the function "configureLink()" for each chart instance. Using this function, you can pass all your desired configurations for the descendant charts.

Ref.- http://docs.fusionch...l#configurelink

 

You can pass all the properties that a FusionCharts constructor accepts.

Ref.- http://docs.fusionch...tml#chartparams

 

Additionally, you can also configure the overlay button using "overlayButton" property.

Ref.- http://docs.fusionch...l#overlaybutton

 

Hope this helps. :)

Share this post


Link to post
Share on other sites

Hi,

 

hi

could you please upload a sample code for this issue.

Thanks

 

 

 

Please check with the sample mentioned in the following link for details on the usage of "configureLink()" function by right-clicking to view the Page source to see the code.

Ref.- http://docs.fusioncharts.com/charts/Code/JavaScript/Basics/UsingLinkedCharts/linked-charts-config-basic-xml.html

 

Also, you would be able to find the sample implementation in the FusionCharts XT Download Package in the following path.

Ref.- Download Package >> Code >> JavaScript >> Basics >> UsingLinkedCharts >> linked-charts-config-basic-xml.html

 

Hope this helps. :)

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