|
Polar chart angles |
Posted by Martin Halford on Oct-24-2011 16:53 |
|
Hi Peter,
I'm trying to shift the angles in my chart to the right by 15 degrees - if I change the 'angle' array value, nothing happens.
i.e. angles = Array(16,48,80,102,144,176,219,242,276,310,342)
If I add a 'Call c.angularAxis().setLinearScale(15, 375) ' the whole thing goes wonky.
Can you help?
Many thanks,
Martin
|
Re: Polar chart angles |
Posted by Peter Kwan on Oct-25-2011 03:19 |
|
Hi Martin,
Do you have the following lines somewhere in your code?
Call c.angularAxis().setLinearScale(0, 360, 30)
angles = Array(16,48,80,102,144,176,219,242,276,310,342)
Set layer = c.addSplineLineLayer(myRadii, .....)
Call layer.setAngles(angles)
If the above still cannot solve the problem, is it possible to inform me the complete charting part of your code, so I may try to reproduce the problem?
Regards
Peter Kwan |
|