|
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
|
|