Appdesigner uitable darkmode including header (column name) and blank part

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?

Answers (1)

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!

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products

Asked:

on 14 Apr 2020

Answered:

on 22 Aug 2025

Community Treasure Hunt

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

Start Hunting!