Adding Color to Text in Rows in UI Table in GUI
4 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
回答(2 个)
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 个评论
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
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!