Adding Color to Text in Rows in UI Table in GUI

조회 수: 17 (최근 30일)
Chris Dan
Chris Dan 2020년 7월 26일
댓글: Chris Dan 2020년 7월 29일
Hello,
I am trying to add color to text in the UI Table, here is my code. It starts by the user loading the files and then displaying the file names in the table. How can I add different color to each file name?
AssemblyData= {'Name1',0, 0};
AssemblyTable= uitable(f, 'Units', 'centimeters','Position', [1,1,7,5], 'Data', AssemblyData,'ColumnEditable',[false, true, true], 'ColumnName',{'Name'; 'Offset[m]';'MeshSize[m]'},'CellEditCallback', {@AssemblyEdit_Callback});
function AddBody_Callback(source,eventdata)
[files,pathToFiles] = uigetfile('*.mat',...
'Select One or More Files', ...
'MultiSelect', 'on');
[BodyDataAdd,k, FileNames] = BodyDataLoad(files,pathToFiles);
if isempty(BodyData)
BodyData= BodyDataAdd;
else
BodyData= [BodyData; BodyDataAdd];
end
for TempIndex= 1:k % k is the number of files added
if k==1
AssemblyData{BodyNumber+TempIndex,1} = FileNames;
else
AssemblyData{BodyNumber+TempIndex,1} = FileNames{TempIndex};
end
AssemblyData{BodyNumber+TempIndex,2} = 0;
AssemblyData{BodyNumber+TempIndex,3} = 0;
end
BodyNumber= BodyNumber+k;
AssemblyTable.Data= AssemblyData;
end

답변 (2개)

Andreas Bernatzky
Andreas Bernatzky 2020년 7월 27일
Hi if you have an handle h to the object you can try this:
set(h, 'Color',[1, 0 ,0], 'FontSize', 20)
  댓글 수: 3
Chris Dan
Chris Dan 2020년 7월 28일
Hi,
I have changed my loop,
now the error I am getting is
"Index in position 1 exceeds array bounds (must not exceed 1)."
Although k is 2 and Assembly Table also has two rows
for up =1:k
set(AssemblyTable(up,1),'ForegroundColor',b(up,: ))
endfor up =1:k
set(AssemblyTable(up,1),'ForegroundColor',b(up,: ))
end
Tommy
Tommy 2020년 7월 29일
Does b have two rows?

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


Walter Roberson
Walter Roberson 2020년 7월 29일
We cannot be sure from what you posted whether your uitable is on a traditional figure or on a uifigure . The style of your code would be more consistent with it being a traditional figure.
When you use uitable on tradtional figures, you are limited to setting foreground and background that affect all of the rows, and to set "row striping" that affects alternate rows. https://www.mathworks.com/help/matlab/ref/matlab.ui.control.table-properties.html#buiu91u-1-RowStriping .
However if you use uitable on traditional figures, and you make all of the cells into cell array of character vectors, then you can put HTML into each one individually, making each one a separate <table> that you can then set bgcolor for... one cell at a time. You would not want to make such cells editable as the user would be editing the HTML.
If you use uitable on uifigure, then new style facilities become available; see https://www.mathworks.com/help/matlab/ref/matlab.ui.style.style-properties.html
  댓글 수: 1
Chris Dan
Chris Dan 2020년 7월 29일
Thanks
I figured out that changing the background color is also working for me :)

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

카테고리

Help CenterFile Exchange에서 Develop uifigure-Based Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by