グラフの作成に 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));
}
データセットに値を追加します。すべてのデータは配列リスト内にあります。
私を助けてください。