FusionCharts for Dreamweaver - Developer Edition Forum


box FusionCharts for Dreamweaver - Developer Edition
FusionCharts is a Dreamweaver Charting Extension that can be used to render data-driven & animated charts for web applications and presentations. FusionChartsDW is a cross-browser and cross-platform solution that can be used with ASP.VB, PHP, and ColdFusion to deliver interactive and powerful flash charts.

Find out more about FusionCharts for Dreamweaver - Developer Edition

Thread: Transperant background Internet Explorer?

title left
User Details
message
title right

post date:
2010-11-10 21:19:58
I created a couple of charts, withhout a canvas color or background color. It works fine with Firefox, opera and Chrome. But again, IE has some issues. It shows a white background.rnrnMaybe you can help me with this?rnrnRegards, Iwan
Andrei Rinciog [Extend Studio]

post date:
2010-11-11 04:45:28
Hello,

Try adding this line above inside the script of the chart:

chartFusionChart1.setTransparent(true);

The script block should now look something like this:

<!-- (FCChart Begin) #FusionChart1 -->
<div id="fc_FusionChart1" align="center">FusionCharts.</div>
<script type="text/javascript">
var chartFusionChart1 = new FusionCharts("includes/FusionCharts/charts/Column3D.swf", "FusionChart1", "400", "400", "0", "1");
chartFusionChart1.setDataURL("includes/FusionCharts/data/FusionChart1_data.xml");
chartFusionChart1.setTransparent(true);
chartFusionChart1.render("fc_FusionChart1");
</script>
<!-- version 1.1.1-->
<!-- #FusionChart1 (FCChart End) -->

Editing the chart will remove that line. So, its best to add it when you know you're done working on it.

Regards,
Andrei Rinciog
Iwan Bronkhorst

post date:
2010-11-24 07:56:14
Solved it!

Thanks,
Iwan