OMMPAVAN Report post Posted May 13, 2013 the below code is showing loading chart please wait in IE with out flash plugin function disPlayChart(chart,renderComp,chartType,chartData,widht,hight){ chart = new FusionCharts(chartType,chart,widht, hight, "0", "1"); chart.setXMLData(chartData); chart.render(renderComp);} What to do it must run with out flash also .IE 8 and IE 9 Share this post Link to post Share on other sites
Haritha Report post Posted May 13, 2013 Hi, If you see an endless "Loading Chart Please Wait" in your browser, check the following: 1. Have you pasted the chart SWF and JavaScript files (FusionCharts.js, FusionCharts.HC.js, FusionCharts.HC.Charts.js and jquery.min.js) in the required folder? 2. Have you provided the name and path of the chart properly in your code? FusionCharts uses the JavaScript fallback for machines which do not contain/support Flash. There are no extra settings needed for doing this. Could you please attach the sample code that replicates the problem if this does not resolve your issue? Awaiting your response. Share this post Link to post Share on other sites
OMMPAVAN Report post Posted May 13, 2013 (edited) function disPlayChart(chart,renderComp,chartType,chartData,widht,hight){ chart = new FusionCharts(chartType,chart,widht, hight, "0", "1"); chart.setXMLData(chartData); chart.render(renderComp); } this is my method to display charts .It is working fine when enable flash player plug in but if flash player is disabled showing like below . when i tried as stand alone aplication it is working fine .but in web application it is coming like below . The only thing i am doing Enable falsh and test Disable flash and test . Edited May 13, 2013 by OMMPAVAN Share this post Link to post Share on other sites
Haritha Report post Posted May 14, 2013 Hi, It seems that the JavaScript chart is not getting rendered when you use it in a Web Application. Please check if the path to the JS files mentioned in the script tag exists on the server if you have provided an absolute path. Also, please verify if you have placed FusionCharts.HC.js, FusionCharts.HC.Charts.js and jquery.min.js in the same folder as FusionCharts.js. Awaiting your response. Share this post Link to post Share on other sites