uitable scroll behaves very slow ...
14 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
Yair Altman
on 20 Jan 2012
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 Comments
More Answers (1)
Jan
on 15 Jan 2012
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.
2 Comments
See Also
Categories
Find more on Migrate GUIDE Apps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!