No 'CData' property on bar graph

10 ビュー (過去 30 日間)
Jack Olmstead
Jack Olmstead 2017 年 10 月 12 日
回答済み: Roger Breton 2024 年 1 月 18 日
I'm trying to make a bar graph and adjust the colors of individual bars. The most helpful online answers on how to do this involve using the 'CData' property of the bar object. However, in my particular bar graph, generated by the following code, there is no 'CData' property, and I'm confused as to why. Any help would be greatly appreciated!
eyesPlot = bar(1:4,eyesArray(:,2));
  2 件のコメント
Steven Lord
Steven Lord 2017 年 10 月 12 日
Which release are you using?
Jack Olmstead
Jack Olmstead 2017 年 10 月 12 日
R2017a

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

回答 (2 件)

Tom Holmes
Tom Holmes 2017 年 11 月 9 日
This worked for me with 2017a release:
figure
BarMatrix = [your_matrix_here];
b = bar(BarMatrix,1,'LineStyle','none');
CData = lines(4);
for k = 1:size(BarMatrix,2)
b(k).FaceColor = CData(k,:);
end

Roger Breton
Roger Breton 2024 年 1 月 18 日
Does not work for me?
I use:
data = [1 2 3 4];
figure
BarMatrix = [1 2 3 4];
b = bar(BarMatrix,1,'LineStyle','none');
CData = lines(4);
for k = 1:size(BarMatrix,2)
b(k).FaceColor = CData(k,:);
end
And all I get are four solid bars of blue?

カテゴリ

Help Center および File ExchangeData Exploration についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by