Stacked bar plot, assign "names" to color

2 views (last 30 days)
Yuhan Wang
Yuhan Wang on 10 Jun 2021
Edited: Scott MacKenzie on 10 Jun 2021
How can I assign names to color? In the figure, say, in the right side list, I will assign "Jack's Contribution" to blue instead of "data 6".

Answers (1)

Scott MacKenzie
Scott MacKenzie on 10 Jun 2021
Edited: Scott MacKenzie on 10 Jun 2021
Just add labels to your legend:
labels = { 'Jack', 'Fred', 'abc', 'def' }; % fill out, as desired
legend(labels);

Community Treasure Hunt

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

Start Hunting!