
Appdesigner uitable darkmode including header (column name) and blank part
2 次查看(过去 30 天)
显示 更早的评论
Do you have any tip to change the table background color of a uitable inside app designer including the header (column name) and the blank part like the attached image?

0 个评论
回答(1 个)
TED MOSBY
2025-8-22
Hi,
You can change the background of the table excluing the headers as of now.
uit = uitable(uifigure,'Data',rand(100,10));
s = uistyle;
s.FontColor = 'blue';
addStyle(uit,s);
uit.BackgroundColor = 'red';

Here is some documentation for reference:
Hope it helps!
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!