uitable: text-alignment with HTML
显示 更早的评论
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!
回答(2 个)
Walter Roberson
2014-3-26
编辑:Walter Roberson
2023-1-19
1 个投票
style attributes and css are newer than the HTML that is supported. Use the HTML CENTER tag instead.
2 个评论
Walter Roberson
2023-1-19
Note: in the time since this question was originally asked, uifigure() were added. uitable() that exist within uifigure() have additional formatting possibilities
Use this as reference. This centers the text, makes the background red, and changes the font color to white:
uitable('data',{'<html><tr><td width=9999 style="color:White;background-color:#FF0000;text-align:center">X'})
类别
在 帮助中心 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!