Adding Color to Text in Rows in UI Table in GUI

4 ビュー (過去 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 Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by