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

13 次查看(过去 30 天)
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?

回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 Axes Appearance 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by