JFreeChart饼状图显示数字

      饼图标签显示百分比方法
   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}"));

你可能感兴趣的:(jfreechart,饼图)