如何使用 xybubblerenderer 实现类别图
如何在 JFreechart 中使用 xybubblerenderer 实现类别图? 我想要一个类别图,其中显示每个类别的几个气泡。 使用气泡的 x 值将这些气泡放置在图的 y 轴上,气泡的 y 值确定其面积。 所以每个类别中都存在泡沫。它们在图上的 x 位置可以是随机的。一个值控制它们在图上的 y 位置,另一个值控制它们的面积。
how to implement a category plot with xybubblerenderer in JFreechart?
I want to have a category plot which shows several bubbles for each category.
These bubbles are placed on the y axis of the plot using the x value of the bubble and y value of the bubble determines its area.
So there are bubbles within each category. Their x position on the plot can be random. One value controls their y position on the plot and another value controls their area.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以使用 SymbolAxis 和 XYBubbleRenderer 来完成。必须确保气泡的 x 值在 [0,n] 范围内,并且 [0,n] 已在符号轴中分配了正确的标签。
It can be done using the SymbolAxis and XYBubbleRenderer. It has to be ensured that the x values of the bubbles are in the range [0,n] and [0,n] have been assigned proper labels in symbol axis.
否则你必须编写自己的 CategoryBubbleRenderer,我已经这样做了并且它有效,这里是我的代码
Otherwise you have to write your own CategoryBubbleRenderer, I have done so and it works, here my code