Hi,
If BarChart has a lot of categories with long names, then labels got jammed. Is there any flag to rotate labels (like Excel does)?
Thanks
Andy
rotate BarChart category labels
Re: rotate BarChart category labels
Hi Andy,
just use
HorizontalCategoryAxis.setVerticalCategoryLabels(boolean flag)
to get there from a JFreeChart object do something like this
HorizontalCategoryAxis hca = (HorizontalCategoryAxis)chart.getPlot.getHorizontalAxis();
just use
HorizontalCategoryAxis.setVerticalCategoryLabels(boolean flag)
to get there from a JFreeChart object do something like this
HorizontalCategoryAxis hca = (HorizontalCategoryAxis)chart.getPlot.getHorizontalAxis();