How to change Legend Bar Color's Object?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Tyann Hardyn
il 9 Apr 2022
Commentato: Frantisek Gaspar
il 15 Apr 2022
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 :
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/958760/image.png)
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....
0 Commenti
Risposta accettata
Frantisek Gaspar
il 13 Apr 2022
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 Commenti
Frantisek Gaspar
il 15 Apr 2022
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)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Legend in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!