本文共 416 字,大约阅读时间需要 1 分钟。
饼图标签显示百分比方法 PiePlot pp = (PiePlot)chart.getPlot(); pp.setLabelGenerator(new StandardPieSectionLabelG enerator("{2}")); 如果百分比要包括一位小数,则使用 pp.setLabelGenerator(new StandardPieSectionLabelG enerator("{2}",new DecimalFormat("0.0"),new DecimalFormat("0.0%"))); 显示实际数值 PiePlot pp = (PiePlot)chart.getPlot(); pp.setLabelGenerator(new StandardPieSectionLabelG enerator("{1}")); 转载于:https://my.oschina.net/u/869416/blog/119537