bagus sutan Report post Posted December 16, 2009 Hi, My company plans to buy widget and I had tried the chart v3 trial edition. Can I use all features chart v3 in widget? Thx. Bagus Sutan Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted December 16, 2009 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
bagus sutan Report post Posted December 21, 2009 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 Report post Posted December 21, 2009 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