Sign in to follow this  
Ben George

Ie7 And Fusioncharts

Recommended Posts

Set the height & width of the chart to use percentages and view in IE7.

 

eg: $chartContainer.updateFusionCharts({height: "100%", width: "100%"});

 

 

 

Then javascript will slow the page down dramatically. Eventually IE will warn the user that script is running slow and give the user an option to stop the script (and in turn kill fusion charts).

 

Other than writing our own stable code to resize the chart using fixed width / height, is there a fix for this we can use ?

Share this post


Link to post
Share on other sites
Guest Sashibhusan

Hi,

 

With regard to your issue, please note that the "updateFusionCharts" method is applied on HTML elements selected using jQuery selector only.

 

Ref. Code:

$("#chartContainer").updateFusionCharts({ width : "100%", height : "100%"  });

 

For more information on "Retrieving and Updating properties of Charts using FusionCharts jQuery plugin", please follow the link below:

http://docs.fusioncharts.com/charts/contents/?jQuery/RetrieveUpdate.html

 

Please try the above code and if the issue still persists then, could you please send us the sample code along with screen shot of the error that you are getting, to test it from our end?

 

Awaiting your response.

Share this post


Link to post
Share on other sites

In my example $chartContainer is a jQuery selected element, and the code does update the chart accordingly. $foo is a convention for naming jQuery selected elements. But its completely not the point.

 

The point is fusion charts in IE7 when in 'percentage' mode (be it Javascript mode or Flash mode) causes CPU to be consumed massively. We have now written our own javascript to automatically resize the chart.

 

 

As it stands FusionCharts should not be considered 100% compatible with IE7.

Edited by Ben George

Share this post


Link to post
Share on other sites

Hi,

 

We are looking into the issue.

 

We would update you on the same.

 

Thank you for your continued patience and support.

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