在 jfreechart 中定位数据点标签
我试图弄清楚如何更改 JFreeChart 中 itemLabels 相对于其数据点(在 XYPlot 中)的位置。我想这样做是因为我的一些标签最终位于图表区域之外(显然,我不想对图表大小进行硬编码)。最好的方法是什么?
我见过使用 setPositiveItemLabelPosition() 的示例,但是此方法似乎已被弃用。
I'm trying to figure out how to change the position of itemLabels in JFreeChart relative to their datapoints (in an XYPlot). I wanna do this because some of my labels end up outside the chart area (and I don't wanna hardcode the chart size, obviously). What's the best way to do this?
I've seen examples using setPositiveItemLabelPosition(), however this method seems to be deprecated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以更改
ItemLabelPosition
使用 中指定的各种set*ItemLabelPosition()
方法href="http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/renderer/xy/XYItemRenderer.html" rel="nofollow">XYItemRenderer
界面。You can alter the
ItemLabelPosition
using the assortedset*ItemLabelPosition()
methods specified in theXYItemRenderer
interface.