How to get the facecolor of each bar?
2 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Ben11
2014 年 8 月 1 日
編集済み: Ben11
2014 年 8 月 1 日
Use the handles to the bar graph to retrieve its 'FaceColor' property.
Eg:
hbar1 = hbar(data,SomeColor);
Then you can get the color specifications with:
get(hbar1,'FaceColor');
and apply it to another graph:
hbar2 = hbar(data2,get(hbar1,'FaceColor'));
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Discrete Data Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!