JFreeChart 刻度标签截断
使用 JFreeChart 渲染图表时,如果水平轴末端附近有刻度标签,则该标签会在图像边框处被部分切断,例如:
|
|
+----------+------------------+-
01 Jun 11 01 Jul <--- missing year
有什么方法可以防止这种情况发生吗?是否可以添加某种保证金或类似的保证金?
谢谢
When rendering a chart using JFreeChart, if there is a tick label near to the end of the horizontal axis the label is partially cut off at the border of the image, eg:
|
|
+----------+------------------+-
01 Jun 11 01 Jul <--- missing year
Is there any way that I can prevent this? It is possible to add some kind of margin or similar?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设
DateAxis
< /a>,父ValueAxis
方法setUpperMargin()< /code>
可能就足够了。
Assuming a
DateAxis
, the parentValueAxis
methodsetUpperMargin()
may suffice.