Display Shared Legend in Tiled Chart Layout - Example replication error message

10 Ansichten (letzte 30 Tage)
I've just discovered the existence of tiledlayouts as an alternative to subplots and have been trying to recreate the "Display Shared Legend in Tiled Chart Layout" example on the legend documentation page here: https://uk.mathworks.com/help/matlab/ref/legend.html
tiledlayout(2,2);
nexttile
plot(rand(5))
nexttile
plot(rand(5))
nexttile
plot(rand(5))
lgd = legend;
lgd.Layout.Tile = 4;
It runs fine if I use the online "Try This Example" button, but when copied exactly into Matlab on my desktop (v2020a), I get the following error message:
Error in DataAnalysis (line 117)
lgd.Layout.Tile = 4;
Unrecognized method, property, or field 'Layout' for class 'matlab.graphics.illustration.Legend'.
This is infurianting as I understand what the error is telling me, but don't know why it's happening when I can see the layout property exists in the documentation here: https://uk.mathworks.com/help/matlab/ref/matlab.graphics.illustration.legend-properties.html
Would massively appreciate it if someone with better knowledge could explain this to me please. Is this a version issue or a package I'm missing?

Antworten (1)

Ben Morgan
Ben Morgan am 18 Okt. 2020
Nevermind, it's something that was added in 2020b.

Kategorien

Mehr zu Axes Appearance finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by