How can I change color in barh graph
13 ビュー (過去 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!