How do I get the FaceColor of a histogram if set to ‘auto’?
7 ビュー (過去 30 日間)
古いコメントを表示
h1 = histogram(data); get(h1, 'FaceColor');
Returns ‘auto’ and not the set color.
0 件のコメント
採用された回答
Cindy Solomon
2015 年 6 月 2 日
Hi Gero,
The actual FaceColor is based on the 'ColorOrder' property of the axes, so if you assumed that the color order hasn't been changed and that the histogram was the first thing plotted on that axes, you could query the color from that. Histograms follow the same model as plot, wherein the first item plotted uses the first color on the ColorOrder, the second item uses the second color, etc. For example, if you knew that the histogram was the first item plotted, you could do something like:
colorList = get(gca,'ColorOrder');
histColor = colorList(1,:);
Could you please clarify why you would need to get the color this way? I work at MathWorks and would like to better understand your use-case so that I can pass your feedback to the developers.
Hope this helps!
2 件のコメント
Walter Roberson
2015 年 6 月 2 日
Cindy, is the implication that if you change order of Children in the axes, that the histogram might change color?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!