How to list property values

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

采纳的回答

Walter Roberson
Walter Roberson 2011-11-5
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by