XYLineChart
に問題があります。グラフのフォントをSwingコンポーネントのように設定する方法はわかりません。私はこれを使用する場合:JFreeChart - 間違ったチャートフォント
chart.setTitle(new TextTitle("Tahoma title, style plain, size 11", new Font("Tahoma", Font.PLAIN, 11)));
をそれはまだ間違っている:(
EDIT:私は新しいフレームでチャートを作成すると、タイトルのフォントは良いですが、私はすべてのラベルを設定するにはどうすればよいです、軸タイトル、および同じフォントサイズに他のテキスト解決大胆?
なし:)
public static void changeStyle(JFreeChart chart) {
final StandardChartTheme chartTheme = (StandardChartTheme)StandardChartTheme.createJFreeTheme();
final Font font = new Font("Tahoma", Font.PLAIN, 11);
final Color color = new Color(0, 0, 0);
chartTheme.setExtraLargeFont(font);
chartTheme.setLargeFont(font);
chartTheme.setRegularFont(font);
chartTheme.setSmallFont(font);
chartTheme.setAxisLabelPaint(color);
chartTheme.setLegendItemPaint(color);
chartTheme.setItemLabelPaint(color);
chartTheme.apply(chart);
}
ok、タイトルのフォントとサイズを変更しました。しかし、どのようにすべての項目のフォント(ラベル、軸...)を変更するには? – czy