uitable scroll behaves very slow ...
14 次查看(过去 30 天)
显示 更早的评论
Hi, I am creating a GUI with uitable. In this table there should be more than 30000 items of strings display. I just notice that if I put so many elements into uitable's data, the synchronisation of display by scrolling with the vertical scroll bar is not good. Sometime if I draw the bar little bit far away from the current location, it takes more than several or even ten seconds until the content is showed.
Does anyone have a idea how to improve this? Thank you very much .
0 个评论
采纳的回答
Yair Altman
2012-1-20
Matlab's uitable is very inefficient in its handling of data: each cell element is a separate object that needs to be separately created and rendered. This causes the initial data load and scrolling to become extremely slow if you have more than a few hundred/thousand cells in your table.
I've found a way to significantly reduce this overhead in uitable, and I plan to post this as an article in http://UndocumentedMatlab.com sometime in the upcoming month or two. This will make uitable much faster, but there is still an inherent slowdown when there is an enormous number of cells.
Instead of using uitable, if you use a simpler JTable or JideTable or my createTable (which is basically just a Matlab wrapper for a basic Java table), then the responsiveness improves significantly.
Or you can wait for Mathworks to improve uitable in some future Matlab release...
Yair Altman
0 个评论
更多回答(1 个)
Jan
2012-1-15
It is not a good idea to keep 30'000 strings in a uitable. Split the list into some smaller parts, e.g. starting with a specific character or similar.
A GUI should allow an intuitive usage of the controls. As long as the scrollbar has less than 30'000 pixels, it will not be user-friendly. Therefore I'm convinced, there must be a better approach.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!