JFreechart获取网格显示维度
如何在 XY 图中获取网格方块的显示尺寸。我可以获得刻度单位,但由于绘图轴已调整以适合数据集,两个轴上相等的刻度单位并不总是看起来相等,可能是因为其中一个轴具有更大的值范围。 有什么方法可以获取网格的显示尺寸,而不是刻度单位。 谢谢
How can I get the DISPLAY dimensions of my grid squares in an XY plot. I can get the tick unit, but because the plot axis is adjusted to fit the dataset, equal tick units on both axis do not always look equal, maybe because one of the axis have a larger range of values.
Is there any way to get the displayed dimensions of the grids, and not the tick unit.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以从
ChartPanel
上的getBounds()
和Plot
上的getInsets()
推断出有用的信息。或者,指定一个方形容器和setResizable(false)
。You might be able to infer something useful from
getBounds()
on theChartPanel
andgetInsets()
on thePlot
. Alternatively, specify a square container andsetResizable(false)
.