How can I change color in barh graph

28 visualizaciones (últimos 30 días)
Moe
Moe el 24 de Jun. de 2015
Comentada: Moe el 24 de Jun. de 2015
How can I change colors (blue and yellow as defualt) to any other colors in barh graph in Matlab?

Respuesta aceptada

Sean de Wolski
Sean de Wolski el 24 de Jun. de 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

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by