How can I change color in barh graph

조회 수: 12 (최근 30일)
Moe
Moe 2015년 6월 24일
댓글: Moe 2015년 6월 24일
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에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by