Filter löschen
Filter löschen

could anyone help me where to find the legend properties in matlab

1 Ansicht (letzte 30 Tage)
Prabha Kumaresan
Prabha Kumaresan am 26 Jun. 2018
Beantwortet: Walter Roberson am 26 Jun. 2018
could anyone help me where to find the legend properties in matlab

Antworten (1)

Walter Roberson
Walter Roberson am 26 Jun. 2018
For undocumented properties,
h = legend();
s = struct(h);
This will list a number of data classes that have no public description like [1×1 ListOfPointsHighlight] or [1×1 UniformCartesianDataSpace] . Some of those turn out to be linked to implementations that Don't Work Right.... for example setting the Alpha component of a LineStrip color should work (the java objects do have alpha) but doesn't.

Community Treasure Hunt

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

Start Hunting!

Translated by