1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Managing Default Properties (GNU Octave (version 6.2.0))</title>
<meta name="description" content="Managing Default Properties (GNU Octave (version 6.2.0))">
<meta name="keywords" content="Managing Default Properties (GNU Octave (version 6.2.0))">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<link href="index.html" rel="start" title="Top">
<link href="Concept-Index.html" rel="index" title="Concept Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Graphics-Data-Structures.html" rel="up" title="Graphics Data Structures">
<link href="Advanced-Plotting.html" rel="next" title="Advanced Plotting">
<link href="Searching-Properties.html" rel="prev" title="Searching Properties">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
-->
</style>
<link rel="stylesheet" type="text/css" href="octave.css">
</head>
<body lang="en">
<span id="Managing-Default-Properties"></span><div class="header">
<p>
Previous: <a href="Searching-Properties.html" accesskey="p" rel="prev">Searching Properties</a>, Up: <a href="Graphics-Data-Structures.html" accesskey="u" rel="up">Graphics Data Structures</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<span id="Managing-Default-Properties-1"></span><h4 class="subsection">15.3.5 Managing Default Properties</h4>
<span id="index-default-graphics-properties"></span>
<span id="index-graphics-properties_002c-default"></span>
<p>Object properties have two classes of default values, <em>factory
defaults</em> (the initial values) and <em>user-defined defaults</em>, which
may override the factory defaults.
</p>
<p>Although default values may be set for any object, they are set in
parent objects and apply to child objects, of the specified object type.
For example, setting the default <code>color</code> property of <code>line</code>
objects to <code>"green"</code>, for the <code>root</code> object, will result in all
<code>line</code> objects inheriting the <code>color</code> <code>"green"</code> as the default
value.
</p>
<div class="example">
<pre class="example">set (groot, "defaultlinecolor", "green");
</pre></div>
<p>sets the default line color for all objects. The rule for constructing
the property name to set a default value is
</p>
<div class="example">
<pre class="example">default + <var>object-type</var> + <var>property-name</var>
</pre></div>
<p>This rule can lead to some strange looking names, for example
<code>defaultlinelinewidth"</code> specifies the default <code>linewidth</code>
property for <code>line</code> objects.
</p>
<p>The example above used the root object so the default property value will apply
to all line objects. However, default values are hierarchical, so defaults set
in a figure objects override those set in the root object. Likewise, defaults
set in an axes object override those set in figure or root objects. For
example,
</p>
<div class="example">
<pre class="example">subplot (2, 1, 1);
set (groot, "defaultlinecolor", "red");
set (1, "defaultlinecolor", "green");
set (gca (), "defaultlinecolor", "blue");
line (1:10, rand (1, 10));
subplot (2, 1, 2);
line (1:10, rand (1, 10));
figure (2)
line (1:10, rand (1, 10));
</pre></div>
<p>produces two figures. The line in first subplot window of the first
figure is blue because it inherits its color from its parent axes
object. The line in the second subplot window of the first figure is
green because it inherits its color from its parent figure object. The
line in the second figure window is red because it inherits its color
from the global root object.
</p>
<p>To remove a user-defined default setting, set the default property to
the value <code>"remove"</code>. For example,
</p>
<div class="example">
<pre class="example">set (gca (), "defaultlinecolor", "remove");
</pre></div>
<p>removes the user-defined default line color setting from the current axes
object. To quickly remove all user-defined defaults use the <code>reset</code>
function.
</p>
<p>By default, high level plotting functions such as <code>plot</code> reset and
redefine axes properties independently from the defaults. An example of such
property is the axes <code>box</code> property: it is set <code>on</code> by high level 2-D
graphics functions regardless of the property <code>"defaultaxesbox"</code>. Use
the <code>hold</code> function to prevent this behavior:
</p>
<div class="example">
<pre class="example">set (groot, "defaultaxesbox", "off");
subplot (2, 1, 1);
plot (1:10)
title ("Box is on anyway")
subplot (2, 1, 2);
hold on
plot (1:10)
title ("Box is off")
</pre></div>
<span id="XREFreset"></span><dl>
<dt id="index-reset">: <em></em> <strong>reset</strong> <em>(<var>h</var>)</em></dt>
<dd><p>Reset the properties of the graphic object <var>h</var> to their default values.
</p>
<p>For figures, the properties <code>"position"</code>, <code>"units"</code>,
<code>"windowstyle"</code>, and <code>"paperunits"</code> are not affected.
For axes, the properties <code>"position"</code> and <code>"units"</code> are
not affected.
</p>
<p>The input <var>h</var> may also be a vector of graphic handles in which case
each individual object will be reset.
</p>
<p><strong>See also:</strong> <a href="Manipulation-of-Plot-Windows.html#XREFcla">cla</a>, <a href="Manipulation-of-Plot-Windows.html#XREFclf">clf</a>, <a href="Manipulation-of-Plot-Windows.html#XREFnewplot">newplot</a>.
</p></dd></dl>
<p>Getting the <code>"default"</code> property of an object returns a list of
user-defined defaults set for the object. For example,
</p>
<div class="example">
<pre class="example">get (gca (), "default");
</pre></div>
<p>returns a list of user-defined default values for the current axes
object.
</p>
<p>Factory default values are stored in the root object. The command
</p>
<div class="example">
<pre class="example">get (groot, "factory");
</pre></div>
<p>returns a list of factory defaults.
</p>
<hr>
<div class="header">
<p>
Previous: <a href="Searching-Properties.html" accesskey="p" rel="prev">Searching Properties</a>, Up: <a href="Graphics-Data-Structures.html" accesskey="u" rel="up">Graphics Data Structures</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
</div>
</body>
</html>
|