|
Move Gauge's first and last labels |
Posted by Omar on Feb-11-2015 02:23 |
|
Hi Peter,
Is there any way to move upward the first and last labels on a Gauge?
I have try setLabelPos, but it moves all labels.
Thanks
|
Re: Move Gauge's first and last labels |
Posted by Peter Kwan on Feb-12-2015 01:47 |
|
Hi Omar,
You can try something like (in Java):
c.addLabel(0, "<*yoffset=5*>0");
With the above code, the 0 label will move up by 5 pixels. You can apply the same code to
your other label that needs to move up.
Hope this can help.
Regards
Peter Kwan |
Re: Move Gauge's first and last labels |
Posted by Omar on Feb-20-2015 02:59 |
|
thanks Peter! |
|