How can I change color in barh graph
조회 수: 12 (최근 30일)
이전 댓글 표시
How can I change colors (blue and yellow as defualt) to any other colors in barh graph in Matlab?
댓글 수: 0
채택된 답변
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 Center 및 File Exchange에서 Graphics Object Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!