How can one specify the color of comparison bar chart?

조회 수: 1 (최근 30일)
alpedhuez
alpedhuez 2021년 7월 30일
편집: alpedhuez 2021년 7월 30일
Suppose I have
bin_age = ['test', 2];
vals = [ 1 1; 2 2];
b = bar(vals)
newXticklabel = {'young', 'old'}
set(gca,'XtickLabel',newXticklabel);
xlabel('Product');
How can one change the colors of the first bars (blues) and the second bars (oranges)?

채택된 답변

dpb
dpb 2021년 7월 30일
Just answered for another a few minutes ago @ <problem-with-grouped-bar-plot>
You also have a grouped bar plot as your data are arranged as a 2x2 array -- so 2 groups of 2 bars/group.
The .CData property is the only way to change individual bars, likewise it's the way to change all bars of the two bar handles because as you've probably already discovered, the 'Color' property in the bar() argument list is applied to every bar globally, and there's no provision to supply a vector of colors to associate with each row (group) on a 1:1 basis.
I've railed at TMW for 30 years about the poor interface to bar() on such things that the implementation is extremely "user-beligerent" as opposed to "user-friendly".
  댓글 수: 6
alpedhuez
alpedhuez 2021년 7월 30일
편집: alpedhuez 2021년 7월 30일
I did talk to a tech support.
dpb
dpb 2021년 7월 30일
Oh, really! That IS surprising, indeed.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by