|
How to position the Default YAxis in XYChart? |
Posted by Murugan on Feb-25-2015 23:41 |
|
Hi,
How to position the Default YAxis and XAxis in XYChart by maintaining few pixel between
the axis & the plot area?
I don't want the axis line overlapping the plotedge which does not have border. I need to
give 2 pixel alignment for default Axis.
Thank you. |
Re: How to position the Default YAxis in XYChart? |
Posted by Peter Kwan on Feb-26-2015 00:46 |
|
Hi Murugan,
May be try Axis.setOffset, like:
c.xAxis().setOffset(0, 3);
c.yAxis().setOffset(-3, 0);
Hope this can help.
Regards
Peter Kwan |
Re: How to position the Default YAxis in XYChart? |
Posted by Murugan on Feb-26-2015 13:27 |
|
Great. Its working. Thanks a lot for all ur support. |
|