Sign in to follow this  
bagus sutan

Widget vs Chart v.3

Recommended Posts

Guest Basundhara Ghosal

Hi Bagus,

The evaluation package of FusionWidgets supports all the functionality except for the fact that it has a watermark as "FusionWidgets Evaluation".

Share this post


Link to post
Share on other sites

Thanks for the quick reply,

is it possible to display no blank chart before displaying the chart (i want to display background image instead of the word "No data to display") so the chart background will be the same as page background

Thx,

Bagus Sutan

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi Bagus,

Could you please try the following steps:-

1) Please create two 'Divs' in your HTML page.

2) Before the chart is rendered, please try using the "myChart.setTransparent(true);" to set the first Div as transparent.

Ref.- <div id="chartdiv" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div>

<script type="text/javascript">

var myChart = new FusionCharts("../FusionCharts/Column3D.swf", "myChartId", "900", "300", "0", "0");

myChart.setDataURL("Data.xml");

myChart.setTransparent(true);

myChart.render("chartdiv");

</script>

</div>

3) Please try using the attribute "bgSWF" to specify the background image in the second Div which should have the same height and width as that of the chart.

4) Please try customizing the FC_Rendered function so that if the chart is rendered it will hide the second Div and will display the chart, else it will call the second Div displaying the mentioned background image. 

Hope this helps. :)

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