Axis with arrow?
Axis with arrow?
Is it possible to add an arrow at the end of the left axis?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Axis with arrow?
Hi znakeeye,
Yes, you can use AxisArrow tool:
Yes, you can use AxisArrow tool:
Code: Select all
AxisArrow axisArrow1 = new AxisArrow(tChart1.getAxes().getLeft());
axisArrow1.setPosition(AxisArrowPosition.END);
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Axis with arrow?
Code: Select all
AxisArrowPosition.START
How do I remove the arrow after adding it?
Re: Axis with arrow?
Ah, got it!
Code: Select all
chart.getTools().clear();