I have following, perhaps trivial question, but i couldn't find an answer

The legend of piechart is positioned on the left. Due to long keys the chart itself becomes small. Is it possible to fix the legend size?
Code: Select all
public class ChartTest {
public static void main(String[] args) {
DefaultPieDataset ds = new DefaultPieDataset();
ds.setValue("very very very long name", 200);
ds.setValue("just name",90);
JFreeChart pieChart= ChartFactory.createPieChart("My Chart", ds, true, true, false);
ChartFrame cf = new ChartFrame("Test", pieChart);
cf.setSize(250, 300);
LegendTitle title=pieChart.getLegend();
title.setPosition(RectangleEdge.LEFT);
pieChart.setBackgroundPaint(Color.white);
PiePlot piePlot=(PiePlot)pieChart.getPlot();
piePlot.setLabelGenerator(null);
cf.setResizable(false);
cf.setVisible(true);
}
}
Thanks for your help in advance.