uitable: text-alignment with HTML
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everybody!
To customize uitbales in Matlab I used the solution posted in:
which works perfectly.
Additionally, I would like to align each cell content (strings) to the center of the cell. To do so I tried changing:
colText('Blue text', 'blue'), ...
to
colText('<HTML><p style="text-align:center">Blue text</p></HTML>', 'blue')
But it does not show any effect.
Can you tell me how it is possible to change the text alignment in the cells using the suggested code snippet from the posted link and maybe give an example?
Thank you very much in advance!
0 Kommentare
Antworten (2)
Walter Roberson
am 26 Mär. 2014
Bearbeitet: Walter Roberson
am 19 Jan. 2023
style attributes and css are newer than the HTML that is supported. Use the HTML CENTER tag instead.
2 Kommentare
Walter Roberson
am 19 Jan. 2023
Note: in the time since this question was originally asked, uifigure() were added. uitable() that exist within uifigure() have additional formatting possibilities
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!