如何在 JFree BarChart 中添加 PieChart 子图?
我想在 JFree BarChart 上包含 PieChart 子图。这个想法是表示图表中包含的项目数与项目总数,以了解长尾有多长。
您可以在此处获取示例图像。如何使用 JFreeChart 构建类似的东西?
I want to include a PieChart subplot over a JFree BarChart. The idea is represent how many items are included in the chart vs the total number of items to see how long is the Long Tail.
Here you can a sample image. How can I build something similar with JFreeChart?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
createBufferedImage()
并将其作为XYImageAnnotation
。You can create a
BufferedImage
from any chart usingcreateBufferedImage()
and add it to a chart as anXYImageAnnotation
.