|
polar scatter chart |
Posted by vikas on Oct-01-2012 22:16 |
|
in polar scatter chart,if a location comes under tick( 20km, 40km), then it is not visible, can i make the layer of location in fornt side and sent the (0, 20, 40 , 60 km) tick layer back side. |
Re: polar scatter chart |
Posted by Peter Kwan on Oct-02-2012 03:30 |
|
Hi vikas,
You can set the label background semi-transparent. This allows you to see labels clearly, and also the data points even if they are behind the labels. You can also shift the labels to the right or left side of the radial axis (instead of directly on the radial axis).
For example, in Java/C#:
ChartDirector.TextBox t = c.radialAxis().setLabelStyle("Arial", 8);
t.setBackground(0x7fffffff); //semi-transparent white background
c.radialAxis().setLabelGap(2); //label on right side of the axis
Hope this can help.
Regards
Peter Kwan |
Re: polar scatter chart |
Posted by vikas on Oct-03-2012 22:31 |
|
thanks peter bro |
|