7

JFreeChart中,是否可以将图例嵌入图表本身?图例可以设置在图表的顶部、底部、左侧、右侧,如下所示,但是是否可以将其嵌入到图表中?

LegendTitle legend=chart.getLegend();
legend.setPosition(RectangleEdge.TOP);
4

1 回答 1

13

JFreeChart Samples 中包含了如何在 polt 中设置图例的示例XYTitleAnnotationDemo1,这是关键部分:

XYPlot plot = (XYPlot) chart.getPlot();
LegendTitle lt = new LegendTitle(plot);
lt.setItemFont(new Font("Dialog", Font.PLAIN, 9));
lt.setBackgroundPaint(new Color(200, 200, 255, 100));
lt.setFrame(new BlockBorder(Color.white));
lt.setPosition(RectangleEdge.BOTTOM);
XYTitleAnnotation ta = new XYTitleAnnotation(0.98, 0.02, lt,RectangleAnchor.BOTTOM_RIGHT);

ta.setMaxWidth(0.48);
plot.addAnnotation(ta);

在此处输入图像描述

于 2012-07-04T07:37:45.497 回答