RGB color value of plotyy purple bars

5 ビュー (過去 30 日間)
curoi
curoi 2015 年 11 月 18 日
回答済み: Thorsten 2015 年 11 月 18 日
I went to this page to determine how to overlay a line plot on top of a bar plot with multiple y-axes:
However, neither the site or use get( b, 'Color' ) gave me an answer. In fact after using:
[ ax, b, p ] = plot( x, y1, x, y2, 'bar', 'plot' );
get( b, 'Color' )
I only got the answer 'flat'. I like this particular color of purple and was just wondering what the RGB value is for it.

回答 (2 件)

Walter Roberson
Walter Roberson 2015 年 11 月 18 日
If you are referring to the color of the bars, then they are the first color in your colormap
cmap = colormap();
cmap(1,:)
On my system with the default colormap that is [0 0 .5625]

Thorsten
Thorsten 2015 年 11 月 18 日
Try
get(b, 'EdgeColor')
get(b, 'FaceColor')
With Matlab R2012a, I get black bars and get [0 0 0] for EdgeColor and 'flat' for FaceColor.

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by