Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要绘制多个 xyline 图表,每个图表都有巨大的数据集(每秒数据 7 天)。问题是系统消耗大量内存。
有没有办法克服这个内存问题?我可以开始绘制图表并在绘图期间动态添加数据吗?
注意:这适用于使用 spring 的 web 应用程序,并且数据是从数据库中获取的。
你应该使用SamplingXYLineRenderer
SamplingXYLineRenderer
从文档中:
渲染器不一定会绘制每个数据项 - 相反,它会尝试仅绘制那些对视觉输出产生影响的数据项(跳过其他数据项)。此渲染器设计用于 XYPlot 类。