How can I change the color of every data set in a clustered bar graph?

1 次查看(过去 30 天)
The above colors are default colors given by MATLAB. How can I change the blue and red colors to my choice of colors ?

回答(1 个)

Star Strider
Star Strider 2014-10-22
This works:
d = 1./randi(10, 10, 2);
figure(1)
hb = bar(d)
set(hb(1), 'FaceColor', 'm')
set(hb(2), 'FaceColor', 'g')

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by