How to change UITable Row/Column header font size?
84 次查看(过去 30 天)
显示 更早的评论
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??
0 个评论
回答(2 个)
Jeff Foster
2021-4-14
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 个评论
Tobias Seidler
2021-5-24
For a software this expensive the lack (and removing!) of essential features, especially in the AppDesigner, is getting more and more ridiculous.
Nikolaus Koopmann
2022-8-18
seriously! Mathworks is actively helping in making Matlab obsolete technology.
Eric Delgado
2023-6-19
编辑:Eric Delgado
2023-6-19
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');
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!