JFreeChart - 如何反转轴顺序

发布于 2024-12-12 20:51:27 字数 80 浏览 0 评论 0原文

我正在创建 XYPlot,并且需要反转 y 轴上的顺序(也就是说,我需要较低的数字来使轴上的数字较高)。我将不胜感激任何关于如何做到这一点的提示。

I'm creating XYPlot and I need to reverse the order on y-Axis (that is, I need lower numbers to be higher on the axis). I would appreciate any hints how to do that.

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

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

发布评论

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

评论(2

甜妞爱困 2024-12-19 20:51:27

我和你有同样的问题。我发现了这个:

ChartPanel.getChart().getXYPlot().getRangeAxis().setInverted(boolean)

I had the same problem as you. I found this:

ChartPanel.getChart().getXYPlot().getRangeAxis().setInverted(boolean)
陪你到最终 2024-12-19 20:51:27

要反转 Y 轴...您可以使用

ChartPanel.getChart().getXYPlot().getDomainAxis().setInverted(boolean) 

来源:
在 JFreeChart 中反转 X 轴数字标签

to reverse the Y-axis ... you can use

ChartPanel.getChart().getXYPlot().getDomainAxis().setInverted(boolean) 

Source:
Reverse X-axis numeric labels in JFreeChart

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