paraped Report post Posted September 23, 2009 How can i do transparent background for FCF_Pie3D.swf in my web-site? Share this post Link to post Share on other sites
Guest Madhumita Report post Posted September 28, 2009 Hi, Welcome to the FusionCharts Forum. If you wish to set your chart background as transparent in the HTML page, you need to follow these steps: In the chart's XML data, set <chart ... bgAlpha='0,0' ..> In the HTML code that embeds the chart, set myChart.setTransparent(true) as under: <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> Hope this helps. Share this post Link to post Share on other sites