I have a 3D bar chart created using the factory, and have Days on the domain axis.
I sthere any way to have vertical tick labels for the dates as we can on a DateAxis. The setVerticalTickLabels method doesn't seem to be implemented?
TIA
John
vertical tick labels
-
- JFreeChart Project Leader
- Posts: 11734
- Joined: Fri Mar 14, 2003 10:29 am
- antibot: No, of course not.
- Contact:
You can do this:
Code: Select all
CategoryAxis domainAxis = plot.getDomainAxis();
domainAxis.setCategoryLabelPositions(CategoryLabelPositions.UP_90);
David Gilbert
JFreeChart Project Leader
Read my blog
Support JFree via the Github sponsorship program
JFreeChart Project Leader

