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

Message ListMessage List     Post MessagePost Message

  Custom Label Position in Radar Chart
Posted by Cj Talas on Apr-23-2015 14:23
Hi Peter,

In the radar charts angularAxis, how i customize the position of each label?

I know i can use .setpos() however this applies to all the labels in the angular axis.
what if i need only a specific label to be adjusted to say a little bit to the right?

  Re: Custom Label Position in Radar Chart
Posted by Peter Kwan on Apr-24-2015 00:51
Hi Cj,

May be you can use CDML. For example, in the "Simple Radar Chart" sample code, one of
the angular axis label is "Speed". If we change it to "<*xoffset=10*>Speed", then that label
would be shift rightwards by 10 pixels. You can use "<*xoffset=10,yoffset=-20*>Speed" to
shift the label both vertical and horizontally.

Hope this can help.

Regards
Peter Kwan

  Re: Custom Label Position in Radar Chart
Posted by Cj Talas on Apr-24-2015 23:47
Hi Peter,

That solves it! thanks a lot!