|
Pie Char explose all sector |
Posted by Mario on Oct-31-2008 05:22 |
|
In a pie chart, I need explode all sectors from the pie in uniform manner.
I did not find a command that allows you to do this.
Somebody help me know, I'm using chartDirector in an asp.
Sorry for my English
Thank you |
Re: Pie Char explose all sector |
Posted by Peter Kwan on Oct-31-2008 16:33 |
|
Hi Mario,
You may use PieChart.setExplode to explode a sector. To explode all sectors, just use a loop to call setExplode for all sectors. For example:
'create the sectors first
Call c.setData(data, labels)
'explode all sectors
For i = 0 To UBound(data) : Call c.setExplode(i) : Next
Hope this can help.
Regards
Peter Kwan |
|