如何在饼图扇区内显示值

发布于 2024-12-02 19:47:19 字数 79 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初吻给了烟 2024-12-09 19:47:20

使用 setSimpleLabels(),如图此处org.jfree.chart.demo.PieChartDemo1 是一个很好的起点。

PiePlot plot = (PiePlot) chart.getPlot();
plot.setSimpleLabels(true);

Use setSimpleLabels(), as shown here; org.jfree.chart.demo.PieChartDemo1 is a good starting point.

PiePlot plot = (PiePlot) chart.getPlot();
plot.setSimpleLabels(true);
老娘不死你永远是小三 2024-12-09 19:47:20

如果您使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文