代码之家  ›  专栏  ›  技术社区  ›  Satish N

如何使用jfreechart将pichart中的字体设置为副标题?

  •  -1
  • Satish N  · 技术社区  · 9 年前

    我已经生成了带有字幕的piechart i、 e.现金、总额、担保 现在的问题是字幕看起来比实际的片花更大。

    enter image description here

    我如何设置这些字幕的字体?

    1 回复  |  直到 9 年前
        1
  •  1
  •   J Richard Snape    9 年前

    对于标签

    StandardPieSectionLabelGenerator slbl = new StandardPieSectionLabelGenerator("{0} [{1}]",new DecimalFormat("#,##0"),new DecimalFormat("0%"));
    piePlot.setLabelGenerator(slbl);
    

    对于字体

    new Font("SansSerif", Font.ITALIC, 7)
    

    我建议您尝试将该字体添加到 StandardPieSectionLabelGenerator