如何设置饼图值以%表示

时间:2012-08-25 06:34:34

标签: java jfreechart

我正在使用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));
                    }

为数据集添加值。所有数据都在arraylist中。

请帮帮我。

1 个答案:

答案 0 :(得分:1)

PieChartDemo2是一个使用exampleStandardPieSectionLabelGenerator。有一个相关的例子here