How to color each group of a bar plot into a different color

56 ビュー (過去 30 日間)
priyam kar
priyam kar 2023 年 12 月 8 日
コメント済み: Dyuman Joshi 2023 年 12 月 8 日
I have a bar plot with 16 groups with each group having 3 bars. I want to color each group of bar plot into a different color. Someone please help me out with this.

採用された回答

Dyuman Joshi
Dyuman Joshi 2023 年 12 月 8 日
%Random data
mat = randi(20, 16, 3);
%Plot bar graph
b = bar(mat);
n = size(mat,1);
%Get color for each group
color = hsv(n);
%Change the color for each group
for k=1:size(mat,2)
b(k).FaceColor = 'flat';
b(k).CData = color;
end
  2 件のコメント
priyam kar
priyam kar 2023 年 12 月 8 日
Thanks again for your help, this worked perfectly
Dyuman Joshi
Dyuman Joshi 2023 年 12 月 8 日
You're welcome!

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

その他の回答 (1 件)

Adam Danz
Adam Danz 2023 年 12 月 8 日
編集済み: Adam Danz 2023 年 12 月 8 日
h=bar(x,'grouped') where x is an n by m matrix, will create a bar chart with n groups that each have m bars. h will be a 1xm matrix of bar handles.
To apply a color to each group, create a n by 3 matrix of RGB color values that defines the color for each group. Then apply the color matrix to the CData property of each bar object (R2017b or later). You'll also need to set FaceColor to flat.
rng default
data = rand(16,3);
b = bar(data, 'grouped');
colors = rand(height(data),3);
for i = 1:numel(b)
b(i).FaceColor = 'flat';
b(i).CData = colors;
end
  1 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 12 月 8 日
@Adam Danz, this works without providing the 'grouped' argument as well.

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

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by