2014-01-25 153 views
0

是否可以從下面的餅圖中刪除節標籤框。我搜索了很多,但無法獲得答案。如何刪除餅圖中節標籤周圍的節標籤框

![在這裏輸入的形象描述] [1] http://tinypic.com/view.php?pic=2vkhuyp&s=5

上面的鏈接是使用java.I意味着我不想餅圖一個盒子裏麪包圍所示的百分比繪製餅圖它應該只是顯示百分比爲ex.14%

+0

交叉發佈[這裏](http://www.jfree.org/forum/viewtopic.php?f=3&t=116790)以供參考。 – trashgod

回答

1
PiePlot plot = (PiePlot) chart.getPlot(); 
    plot.setLabelBackgroundPaint(null); 
    plot.setLabelOutlinePaint(null); 
    plot.setLabelShadowPaint(null); 
+0

非常感謝您的幫助。 – user3209213