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

조회 수: 1 (최근 30일)
Charbel
Charbel 2020년 4월 14일
답변: TED MOSBY 2025년 8월 22일
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?

답변 (1개)

TED MOSBY
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!

카테고리

Help CenterFile 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!

Translated by