如何使用 jfreechart 在 pichart 中将字体设置为副标题?
How to set Font to Subtitle in pichart using jfreechart?
我生成了带字幕的饼图
即现金,总计,安全
现在的问题是字幕看起来比实际的饼图大。
如何为这些字幕设置字体?
对于标签
StandardPieSectionLabelGenerator slbl = new StandardPieSectionLabelGenerator("{0} [{1}]",new DecimalFormat("#,##0"),new DecimalFormat("0%"));
piePlot.setLabelGenerator(slbl);
换字体
new Font("SansSerif", Font.ITALIC, 7)
我建议您尝试将该字体添加到 StandardPieSectionLabelGenerator
我生成了带字幕的饼图 即现金,总计,安全 现在的问题是字幕看起来比实际的饼图大。
如何为这些字幕设置字体?
对于标签
StandardPieSectionLabelGenerator slbl = new StandardPieSectionLabelGenerator("{0} [{1}]",new DecimalFormat("#,##0"),new DecimalFormat("0%"));
piePlot.setLabelGenerator(slbl);
换字体
new Font("SansSerif", Font.ITALIC, 7)
我建议您尝试将该字体添加到 StandardPieSectionLabelGenerator