Change stackedplot YLabel?
25 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Denis Manolescu
le 6 Mar 2022
Commenté : Denis Manolescu
le 7 Mar 2022
I have a stackedplot with a series of 10 charts and they all have a default YLabel 'Column #'.
It's there any way to change that default?
Thank you
0 commentaires
Réponse acceptée
Dave B
le 7 Mar 2022
Modifié(e) : Dave B
le 7 Mar 2022
The DisplayLabels property gives you access to the y labels:
sp=stackedplot(rand(10,4));
set(sp, 'DisplayLabels',["Apples" "Oranges" "Pears" "Plums"])
% Or you could specify them in the call to stackedplot:
% stackedplot(rand(10,4), 'DisplayLabels', ["Apples" "Oranges" "Pears" "Plums"])
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
