问题描述
我在我的java应用程序中使用JFreeChart。
I am using JFreeChart in my java application.
问题
我想绘制 XYAreaChart ,当我们开始绘制数据时,域轴(x轴)应自动水平滚动。
I want to plot a XYAreaChart whose domain axis (x-axis) should scroll horizontally automatically when we start plotting the data.
我在 TimeSeriesCharts 中看到了相同的内容,但我不想要任何timeSeriesChart。我只想要滚动的x轴。
I saw the same thing in TimeSeriesCharts but I don't want any timeSeriesChart. I just want the scrolling x-axis.
推荐答案
你需要创建自己的 SlidingXYDataset
实现的方式类似于实现 CategoryDataset
。
You'll need to create your own SlidingXYDataset
that implements XYDataset in a manner similar to how SlidingCategoryDataset
implements CategoryDataset
.
附录:如中所述,可以在找到实施。
Addendum: As noted in a comment, a typical implementation can be found here.
这篇关于JFreeChart - 创建移动图表时出现问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!