我想在单元格中设置背景颜色..
就像是:
所以我有 RGB 颜色和我想要着色的单元格数量。
你可以假设单元格的位置就是我写的。
我的颜色由 RGB 给出:
color = [255 0 0];
我想将它添加到第 10 个单元格中,所以我写了如下内容:
S.cell_data(10) = uicontrol('style','text',...
'units','pix',...
'Position',[20 70 80 40],...
'string',color);
但样式不是“文本”,也不是字符串。
这就是我现在正在尝试的:
S.cell_data(10) = uicontrol('style','text',...
'units','pix',...
'Position',[125 70 80 40],...
'string','fh');
parentColor = get(get(S.cell_data(10), 'parent'), 'color');
set(S.cell_data(num_of_cols+1),'foregroundcolor', [0 0 0], ...
'backgroundcolor', parentColor);
有人知道吗?