필터 지우기
필터 지우기

How to change foreground (text) color of specific cells in a uitable

조회 수: 37 (최근 30일)
Chris
Chris 2019년 4월 3일
댓글: farzad 2020년 4월 23일
uit = uitable(figure);
uit.Data = {'row','one';'blank:',' ';'row','three';' ','<--blank'};
uit.ForegroundColor = [1,1,1];
uit.BackgroundColor = [0,0,0;.5,.5,.5];
uit.ColumnEditable = true;
Once the table is generated, I intend on typing information into the blank cells. Is there a way of setting the foreground color of those specific cells to [0,.9,.4], for example? (Or perhaps changing the foreground color of the entire row?) I'm interested in a method of having user added text being a different color than the pre-populate table. Thank you.

답변 (2개)

Chris
Chris 2019년 4월 10일
I've figured a workaround, for anyone else curious:
<html><font color="#FFDC66">Type your text here :)
Using this html code in a cell allows you to change the text color. You can adjust the html hexadecimal code to whatever color you want, too.
  댓글 수: 3
Jan
Jan 2019년 6월 18일
@JessHMann:
uit = uitable(figure);
uit.Data = {'<html><font color="#FFDC66">row', 'one'; ...
'<html><font color="#FFDC00">blank:', ' '; ...
'<html><font color="#FF0066">row', 'three'; ...
' ','<--blank'};
uit.ForegroundColor = [1,1,1];
uit.BackgroundColor = [0,0,0;.5,.5,.5];
farzad
farzad 2020년 4월 23일
is this feasible in App Desginer as well, right in this way ?

댓글을 달려면 로그인하십시오.


Tawnly
Tawnly 2019년 12월 11일
This can be accomplished using uistyle and addStyle.
There are examples available in the linked documentation.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by