How to change Legend Bar Color's Object?

조회 수: 4 (최근 30일)
Tyann Hardyn
Tyann Hardyn 2022년 4월 9일
댓글: Frantisek Gaspar 2022년 4월 15일
Dear Community,
i wanna ask something that could be simple to answer... I just curious about how to change Object's Color in Legend like this :
Iam using bar function with "flat" facecolor and then i can manage the color of bar in every data, but i still cannot change the color of that rectangle object (which re still depend on the very first data bar color) to become other color. Would everyone lend me a hand to give some clues about how to manage it with some codes maybe? Thank you so much everyone....

채택된 답변

Frantisek Gaspar
Frantisek Gaspar 2022년 4월 13일
The color depends on the object the legend entry belongs to. The simplest way to change it is to create invisible graphical object with desired color and create new legend. To change the color manualy in existing legend you have to use undocumented legend properties: https://undocumentedmatlab.com/articles/plot-legend-customization
  댓글 수: 2
Tyann Hardyn
Tyann Hardyn 2022년 4월 15일
How to create an invisible graphical objects, Sir? Would you mind to give me 1 example of code, perhaps?
Frantisek Gaspar
Frantisek Gaspar 2022년 4월 15일
Invisible grafical objects can be usualy created with nan as input:
figure
hold on
h1 = bar(5);
h1.FaceColor = "red";
h2 = bar(nan);
h2.FaceColor = "blue";
h2.DisplayName = "Fake Legend";
legend(h2)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by