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 に答える