Moving the legend to the right of the chart!

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Kamelo
Posts: 6
Joined: Fri Dec 01, 2006 9:47 am

Moving the legend to the right of the chart!

Post by Kamelo » Mon Dec 11, 2006 1:25 pm

Hi there,
Is it possible to move the chart legend to the right corner of a chart?

Thanks in advance.

Regards

Kamel

david.gilbert
JFreeChart Project Leader
Posts: 11734
Joined: Fri Mar 14, 2003 10:29 am
antibot: No, of course not.
Contact:

Post by david.gilbert » Mon Dec 11, 2006 5:27 pm

Yes, try something like this:

Code: Select all

        LegendTitle legend = chart.getLegend();
        legend.setPosition(RectangleEdge.BOTTOM);
        legend.setHorizontalAlignment(HorizontalAlignment.RIGHT);
David Gilbert
JFreeChart Project Leader

:idea: Read my blog
:idea: Support JFree via the Github sponsorship program

Locked