How can I assign different colors to different bins of a single "bar/barh object"?

1 次查看(过去 30 天)
How can I assign different colors to different bins of a single "bar/barh object"?
For example, the first example in the official documentation.
y = [75 91 105 123.5 131 150 179 203 226 249 281.5];
bar(y)
This figure has 11 bins, this case through the "faceColor" property set to a color at the same time, but how to set the display for 11 different colors it ? (no Groups of Bars)

采纳的回答

Ive J
Ive J 2021-7-11
Well, you just needed to go through the doc for bar.
y = [75 91 105 123.5 131 150 179 203 226 249 281.5];
h = bar(y, 'FaceColor', 'flat', 'CData', randi([0, 1], numel(y), 3)); % change CData

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by