Sign in to follow this  
anoopriya

Default text to show when data for Fusion Chart is being fetched

Recommended Posts

In .swf file I have data grid and Fusion Charts.

On load I first fetch values for data grid. With these values I try to draw the fusion chart.

So till the fusion chart is formed I want to display a text like "Loading.. " or "Fetching data to display... ".

Am aware that there is an attribute ChartNoDataText. I guess it displays only when chart is not feeded with

proper data.

Could anyone help me on this??

Share this post


Link to post
Share on other sites

Hello,

Could you please try using ChartNoDataText="Fetching data to display..." and append it after the swf, something like:

var chart = new FusionCharts("../Charts/Area2D.swf?ChartNoDataText=Fetching data to display... ", "ChartId", "600", "275", "0", "0");

Share this post


Link to post
Share on other sites

Hello,

I think what you need to do is set the following four messages:

 

ParsingDataText="Loading..."

PBarLoadingText="Loading..."

RenderingChartText="Loading..." 

XMLLoadingText="Loading..."

I hope this helps!

 

Share this post


Link to post
Share on other sites

Resolved the issue. Used ChartNoDataText attribute.

During load of the page, I set an empty arraycollection to FusionChart and that displayed the default text.

Thanks Dhruva for your help.:)

Edited by Guest

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