Borrar filtros
Borrar filtros

How to change UITable Row/Column header font size?

92 visualizaciones (últimos 30 días)
Nicholas Fugal
Nicholas Fugal el 10 de Jun. de 2020
Editada: Eric Delgado el 19 de Jun. de 2023
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??

Respuestas (2)

Jeff Foster
Jeff Foster el 14 de Abr. de 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 comentarios
Tobias Seidler
Tobias Seidler el 24 de Mayo de 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 el 18 de Ag. de 2022
seriously! Mathworks is actively helping in making Matlab obsolete technology.

Iniciar sesión para comentar.


Eric Delgado
Eric Delgado el 19 de Jun. de 2023
Editada: Eric Delgado el 19 de Jun. de 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');

Categorías

Más información sobre Particle & Nuclear Physics en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by