2012-08-25 88 views
-1

我正在使用JFreechart創建圖表。當我創建餅圖時,餅圖的值以整數格式顯示。但我需要百分比值。如何設置餅圖值%

My current Output :- 

Service manager (1) 
Service Executive (6) 
Service co-coordinator (3) 

My Expected output :- 


Service manager (10%) 
Service Executive (60%) 
Service co-coordinator (30%) 

示例代碼: -

for(int i=0;i<dataset_bydeglist.size();i+=2){ 
         dataset.setValue(dataset_bydeglist.get(i).toString()+" ("+(Integer)dataset_bydeglist.get(i+1)+") ",(Integer)dataset_bydeglist.get(i+1)); 
        } 

增加值dataset.All數據都在裏面數組列表。

請幫幫我。

+0

發佈您的代碼? –

+0

我的問題有什麼問題? –

+0

你的問題不是很清楚。是關於設置值還是關於輸出?代碼的其餘部分在哪裏與問題相關? – Keppil

回答

相關問題