博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JFreeChart饼状图显示数字
阅读量:6313 次
发布时间:2019-06-22

本文共 416 字,大约阅读时间需要 1 分钟。

hot3.png

     
饼图标签显示百分比方法
   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}"));

转载于:https://my.oschina.net/u/869416/blog/119537

你可能感兴趣的文章
python之 列表常用方法
查看>>
vue-cli脚手架的搭建
查看>>
在网页中加入百度搜索框实例代码
查看>>
在Flex中动态设置icon属性
查看>>
采集音频和摄像头视频并实时H264编码及AAC编码
查看>>
3星|《三联生活周刊》2017年39期:英国皇家助产士学会于2017年5月悄悄修改了政策,不再鼓励孕妇自然分娩了...
查看>>
高级Linux工程师常用软件清单
查看>>
堆排序算法
查看>>
folders.cgi占用系统大量资源
查看>>
路由器ospf动态路由配置
查看>>
zabbix监控安装与配置
查看>>
python 异常
查看>>
last_insert_id()获取mysql最后一条记录ID
查看>>
可执行程序找不到lib库地址的处理方法
查看>>
bash数组
查看>>
Richard M. Stallman 给《自由开源软件本地化》写的前言
查看>>
oracle数据库密码过期报错
查看>>
修改mysql数据库的默认编码方式 .
查看>>
zip
查看>>
How to recover from root.sh on 11.2 Grid Infrastructure Failed
查看>>