|
bargraph width size |
Posted by Pramila on Feb-19-2010 18:35 |
|
Hi,
I am using the bar graph in my test application. I would like to reduce the bar graph width size.
Found this api "Bar.setBarGap" in the help.
How can i use this api.
Any help is appreciated.
Thanks & Regards,
Pramilav |
Re: bargraph width size |
Posted by Peter Kwan on Feb-20-2010 06:17 |
|
Hi Pramila,
You just need to call the method. For example:
//this is your bar layer
BarLayer layer = c.addBarLayer(myData);
//call the method of your bar layer
layer.setBarGap(0.7);
Hope this can help.
Regards
Peter Kwan |
|