How can I change color in barh graph
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I change colors (blue and yellow as defualt) to any other colors in barh graph in Matlab?
0 Commenti
Risposta accettata
Sean de Wolski
il 24 Giu 2015
You modify the 'FaceColor' of the bar:
h = barh(rand(4,2),'stacked')
h(1).FaceColor = 'r'; % color
h(2).FaceColor = [0.3 0.78 0.1];% rgb
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Graphics Object Programming in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!