Ben George Report post Posted July 5, 2012 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 Report post Posted July 6, 2012 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
Ben George Report post Posted July 6, 2012 (edited) 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 July 6, 2012 by Ben George Share this post Link to post Share on other sites
Swarnam Report post Posted July 7, 2012 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