how can i display on a table's cell different colors ?

58 ビュー (過去 30 日間)
Stephani Kanga
Stephani Kanga 2020 年 11 月 11 日
コメント済み: Stephani Kanga 2020 年 11 月 16 日
I read the rgb values from an excel file and I want to show the color in a uitable cell.
I tried addStyle but it only works for uifigure while i'm working on figure and i also tried to change the background of the cell but the background changes for all the cells of the table. Is there a way to change the color of a specific cell ?

回答 (1 件)

Eric Sofen
Eric Sofen 2020 年 11 月 12 日
It sounds like you're on the right track. You want to apply the addStyle to the uitable, not the uifigure:
% setup
fig = uifigure;
fig.Position = [500 500 520 200];
uit = uitable(fig);
uit.Data = rand(5);
uit.Position = [20 30 480 135];
% add some color
s1 = uistyle('BackgroundColor','r');
addStyle(uit,s1,'column',3)
s2 = uistyle('BackgroundColor','b');
addStyle(uit,s2,'cell',[1 1; 2 4; 3 5;])
  1 件のコメント
Stephani Kanga
Stephani Kanga 2020 年 11 月 16 日
Yes, I've tried that but as i don't use uifigure it doesn't allow me to use addStyle on figure

サインインしてコメントする。

カテゴリ

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