
Appdesigner uitable darkmode including header (column name) and blank part
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
TED MOSBY
le 22 Août 2025
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 commentaires
Voir également
Catégories
En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!