rotate BarChart category labels

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Andy

rotate BarChart category labels

Post by Andy » Tue Apr 30, 2002 7:06 pm

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

Eric

Re: rotate BarChart category labels

Post by Eric » Wed May 01, 2002 12:16 am

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();

Andy

Re: rotate BarChart category labels

Post by Andy » Thu May 02, 2002 7:32 pm

Eric,

Thanks. It works.

Andy

Locked