JFreeChart如何直接在x轴上打印散点?

发布于 2024-12-24 16:34:25 字数 337 浏览 2 评论 0原文

我尝试制作散点图,但数据点并不完全位于 (2,0) 坐标,并且仅部分可见。 该图像显示了 JFreeChart 生成的输出:

https://i.sstatic.net/oGpZW.png

但它应该是这样的(用 GIMP 制作):

https://i.sstatic.net/dqrnh.jpg

有人知道该怎么做吗?

感谢您的帮助!

I try to make a scatter chart but the data point is not exactly at the (2,0) coordinate and only partly visible.
The image shows the generated output from JFreeChart:

https://i.sstatic.net/oGpZW.png

But it should be like this (made with GIMP):

https://i.sstatic.net/dqrnh.jpg

Does anybody know how to do it?

thanks for any help!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鼻尖触碰 2024-12-31 16:34:26

对于其他人来说,这是解决方案,它并不完全令我满意,但可以接受:

https://i .sstatic.net/70TbB.png

有趣的代码行是:

plot.setAxisOffset(new RectangleInsets(0, 0, 0, 0));
plot.getRangeAxis().setLowerMargin(0);

For anybody else, here is the solution, which didn't satisfy me completely but is acceptable:

https://i.sstatic.net/70TbB.png

The interesting lines of code to do so were:

plot.setAxisOffset(new RectangleInsets(0, 0, 0, 0));
plot.getRangeAxis().setLowerMargin(0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文