ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  Radar Chart, how to remove the box on scale labels
Posted by Omar on Aug-31-2016 08:32
Attachments:
Hi Peter,

Is there anyway to remove the box (border and backcolor) of the scale labels??

I want to leave the number only.

Thanks
RadarChart.png

  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!!!