
Appdesigner uitable darkmode including header (column name) and blank part
조회 수: 1 (최근 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!