acb2 Report post Posted March 10, 2009 I need to hide text from my bulb chart, how could i do that? And I have another question, how could i do the BackgroundColor transparent? I have tried with bgAlpha='0' but it isn't works properly, I need the background have the same color as the page, without put the bgColor to the same color. Share this post Link to post Share on other sites
acb2 Report post Posted March 10, 2009 I just do it, I resolved it with showValue = '0'. Otherwise I still having troubles with the second question. I need a answer for it. Share this post Link to post Share on other sites
Rahul Kumar Report post Posted March 10, 2009 Hi, You would need to make chart transparent, for that please use chart1.setTransparent(true); in the javascript tag and use bgAlpha='0,0' attribute. Sample: <script type="text/javascript"> var chart = new FusionCharts("../Charts/Bar2D.swf", "ChartId", "300", "350", "0", "0"); chart.setDataURL("Data/Bar2D.xml"); chart.setTransparent(true); chart.render("chartdiv"); </script> Share this post Link to post Share on other sites