如何使用默认组件在 JFreeChart 中生成条形图?尺寸?
我正在尝试生成一个条形图,但它迫使我通过从域轴计算标签的大小来控制宽度和高度,并且当它们太大时会导致问题(列值的开始位于图表的中间)。
您有什么建议吗?
谢谢。
I am trying to generate one bar chart but it's forcing me to control width and height by calculating size of labels from domain axis and causing problems when they are too large (the start of the columns' values get in the middle of the chart).
Do you have any suggestion ?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过创建重新绘制图形的自定义绘制器来更改图表上的渲染器;
Painter
代码在这里似乎无法正确显示。我使用widthMultiplier
来控制条形的大小:You can change the renderer on the chart by creating a custom painter that repaints the graphics; the
Painter
code doesn't seem to display correctly here. I used awidthMultiplier
to control the size of my bars: