Sign in to follow this  
OMMPAVAN

Loading Chart Please Wait...issue

Recommended Posts

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

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

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 by OMMPAVAN

Share this post


Link to post
Share on other sites
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

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