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?
0 个评论
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Axes Appearance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!