如何在饼图扇区内显示值
我正在使用 JFreeChart 来创建饼图。值作为标签显示在饼图扇区之外。我想显示饼图扇区内的值。我怎样才能做到这一点。请问有人可以帮助我吗?
I am using JFreeChart
to create pie charts. Values are displayed outside pie chart sectors as labels. I want to display the values within the pie sectors. How can I achieve this. Please can any one help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
setSimpleLabels()
,如图此处;org.jfree.chart.demo.PieChartDemo1
是一个很好的起点。Use
setSimpleLabels()
, as shown here;org.jfree.chart.demo.PieChartDemo1
is a good starting point.如果您使用
createPieChart3D
来创建饼图,以下网址将对您有所帮助。http://www.java2s.com/Code/Java/Chart/JFreeChartPieChart3DDemo1.htm
据我所知,显示内部值是图表的默认功能。如果您无法这样做,则似乎您已更改了默认方式。
If you are using
createPieChart3D
to create Pie chart, following URL will be helpful to you.http://www.java2s.com/Code/Java/Chart/JFreeChartPieChart3DDemo1.htm
What I know is, showing values inside is default feature of the chart. If you're unable to do so it seems that you have changed the default way.