Display Shared Legend in Tiled Chart Layout - Example replication error message
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Ver también
Categorías
Más información sobre Axes Appearance en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!