How can I change the color of every data set in a clustered bar graph?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/145827/image.jpeg)
The above colors are default colors given by MATLAB. How can I change the blue and red colors to my choice of colors ?
0 Commenti
Risposte (1)
Star Strider
il 22 Ott 2014
This works:
d = 1./randi(10, 10, 2);
figure(1)
hb = bar(d)
set(hb(1), 'FaceColor', 'm')
set(hb(2), 'FaceColor', 'g')
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!