JFreeChart:更新图表时保留缩放位置

发布于 12-05 06:05 字数 278 浏览 1 评论 0原文

我的程序使用 JFreeChart(通过 Swing ChartPanel)创建时间序列图表,并允许用户放大它(使用 ChartPanel 的标准缩放功能)。该程序具有可以在运行时调整的参数(例如平滑);如果进行调整,图表将使用 ChartPanel 的“setChart()”方法进行替换。然而,所有调整的时间范围始终保持不变。

当调用“setChart()”时,缩放位置会​​重置,以便显示整个图表。我现在想要的是在调用“setChart()”后保留缩放位置,以便用户可以直接在任何所需的缩放级别观察调整效果。这怎么可能?

My program creates a time series chart using JFreeChart (via Swing ChartPanel) and allows the user to zoom into it (using the ChartPanel's standard zoom feature). The program has parameters (such as smoothing) that can be tweaked at runtime; if tweaked, the chart is replaced using the ChartPanel's "setChart()" method. The timeframe, however, invariably stays the same across all tweaks.

When "setChart()" is called, the zoom position is reset so that the entire chart is shown. What I now want is for the zoom position to be preserved after the call to "setChart()", so that the user can observe tweak effects directly at any desired zoom level. How is that possible?

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

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

发布评论

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

评论(1

扬花落满肩2024-12-12 06:05:21

ChartPanel具有方法 getScaleX()getScaleY(),可用于缓存当前缩放状态,以便以后通过其中一种缩放方法进行恢复。有一个相关示例 在这里

ChartPanel has methods getScaleX() and getScaleY() that could be used to cache the current zoom state for later restoration by one of the zoom methods. There's a related example here.

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