Change stackedplot YLabel?

18 Ansichten (letzte 30 Tage)
Denis Manolescu
Denis Manolescu am 6 Mär. 2022
Kommentiert: Denis Manolescu am 7 Mär. 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

Akzeptierte Antwort

Dave B
Dave B am 7 Mär. 2022
Bearbeitet: Dave B am 7 Mär. 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"])

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by