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.
现在我正在使用 JFreeChart 来创建动态图表。然而,图表显着减慢了我的 GUI。我只是想知道,图形部门中的 jfreechart 是否普遍很重(我的计算机根本不快)。或者有没有办法配置 ChartPanel 以更好地优化动态图表。
JFreechart 库本身不会导致 UI 变慢。但肯定是在慢速 PC 上会在 UI 渲染中产生问题,因为浏览器必须使用图表进行更多的像素绘制。您仍然可以查看以下链接,看看所描述的技巧是否可以帮助您
http://www.jfree.org/phpBB2/viewtopic.php?t=12682
您是否正在高速向 JFreeChart 数据集添加数据?您是否考虑过在添加一批数据时关闭通知,然后重新启用?
JFreeChart.setNotify(false)