How can I change color in barh graph

29 次查看(过去 30 天)
How can I change colors (blue and yellow as defualt) to any other colors in barh graph in Matlab?

采纳的回答

Sean de Wolski
Sean de Wolski 2015-6-24
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by