|
Radar Chart, how to remove the box on scale labels |
Posted by Omar on Aug-31-2016 08:32 |
|
Hi Peter,
Is there anyway to remove the box (border and backcolor) of the scale labels??
I want to leave the number only.
Thanks
|
Re: Radar Chart, how to remove the box on scale labels |
Posted by Peter Kwan on Aug-31-2016 16:05 |
|
Hi Omar,
You can set their colors to transparent to disable them. For example, in Java/C#:
ChartDirector.TextBox t = radialAxis().setLabelStyle("Arial", 10);
t.setBackground(Chart.Transparent, Chart.Transparent);
Hope this can help.
Regards
Peter Kwan |
Re: Radar Chart, how to remove the box on scale labels |
Posted by Omar on Sep-01-2016 02:19 |
|
Thanks Peter!!! |
|