Clear Filters
Clear Filters

How to list property values

1 view (last 30 days)
David Koenig
David Koenig on 5 Nov 2011
I am using plot and other graphics commands that require setting property values. Is there a way I can see all the properties that I can set values to?
If I use >>set(gcf)
I get a list but 'FontSize', for example, is not among the list.
I am specifically looking for a way to set the color of text in a 'text' statement on a graph.
Thanks.

Accepted Answer

Walter Roberson
Walter Roberson on 5 Nov 2011
Figures do not have a FontSize property.
If you
set(text())
then you will see that there is a property named 'Color'.
Generally speaking, the graphics command documentation for a low-level object will have a reference to the place you can find the (documented) properties for the object. For example, http://www.mathworks.com/help/techdoc/ref/text.html says near the top,
For a list of properties, see Text Properties.
where Text Properties is a link to this page
There are also undocumented properties. For more information on those, please see Yair's blog on them

More Answers (0)

Categories

Find more on Graphics Object Properties in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!