jfreechat 设置x轴字体大小
时间: 2024-05-02 18:23:21 浏览: 114
demo.zip_BarChartDemo10_DEMO_Jfreechat demo_jfreechat_jfreechat
设置x轴字体大小可以使用以下代码:
```
ChartFactory.setChartTheme(StandardChartTheme.createLegacyTheme());
JFreeChart chart = ChartFactory.createBarChart("Chart Title", "X Axis Label", "Y Axis Label", dataset, PlotOrientation.VERTICAL, false, true, false);
CategoryPlot plot = chart.getCategoryPlot();
CategoryAxis axis = plot.getDomainAxis();
axis.setTickLabelFont(new Font("Sans-serif", Font.PLAIN, 12));
```
其中,`new Font("Sans-serif", Font.PLAIN, 12)` 表示设置字体为Sans-serif,字体大小为12。您可以根据需要自定义字体和大小。
阅读全文