Sign in to follow this  
acb2

How to hide chart text in a bulb chart?

Recommended Posts

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this