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}"));
相關文章
相關標籤/搜索