How to change UITable Row/Column header font size?

110 views (last 30 days)
I built an app in 2019b that used UITables with the RowName property set. Everything worked fine. When upgrading the 2020a the font size of the RowName lables was changed to something much larger and now my tables don't fit well in the interface anymore. See screenshots of 2019b and 2020a below with identical code. I've cropped the screenshot to hide sensitive information, but there are other row names below that are dictating the width of the header column so I can't just resize the column in this instance.
I cannont find any way to change the font size of the RowName values, only the other cells. It seems that it used to be possible to use HTML to change the formatting as seen here and here. But either that functionality no longer exists or I'm missing a critical step to get it to show anything but the raw HTML code.
Does anybody have a way of changing the formatting in UITable row/column headers??

Answers (2)

Jeff Foster
Jeff Foster on 14 Apr 2021
Hi,
I think your question is similar to
The team is aware of it and considering this request for a future release
Thanks
Jeff
  2 Comments
Tobias Seidler
Tobias Seidler on 24 May 2021
For a software this expensive the lack (and removing!) of essential features, especially in the AppDesigner, is getting more and more ridiculous.
Nikolaus Koopmann
Nikolaus Koopmann on 18 Aug 2022
seriously! Mathworks is actively helping in making Matlab obsolete technology.

Sign in to comment.


Eric Delgado
Eric Delgado on 19 Jun 2023
Edited: Eric Delgado on 19 Jun 2023
I am not sure if it is still an issue to you guys, but I wrote ccTools, a lib that turns possible the customization of the header of the uitable (and a lot of more things, like a new filterable table class). I hope it helps! :)
f = uifigure;
g = uigridlayout(f, 'RowHeight', {'1x'}, 'ColumnWidth', {'1x'});
t = uitable(g, 'Data', table("#"+string((1:100)'), (1:100)', (1:100)'+.1, (1:100)'+.001, (1:100)'+.00001, randn(100,1)));
drawnow
ccTools.compCustomization(t, 'backgroundHeaderColor', '#52555c', ...
'borderRadius', '10px', ...
'fontFamily', 'Times New Roman', ...
'color', 'white');

Categories

Find more on Particle & Nuclear Physics 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!