餅圖標籤顯示百分比方法
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}"));