Hi Hafwil,
The slices in your chart can be plot similar to the stacked rose chart.
Basically, your code needs to pass the data to ChartDirector. The data should contain the start and end angles, the start and end radius and the colors of each slice.
In VB/VBScript, the code fragment that draws the slices are like:
For i = 0 To UBound(startAngles)
c.angularAxis().addZone(startAngles(i), endAngles(i), startRadius(i), endRadius(i), sliceColors(i), 0)
Next
Hope this can help.
Regards
Peter Kwan |