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
|
<html lang="en">
<head>
<title>Contour groups - Untitled</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Untitled">
<meta name="generator" content="makeinfo 4.11">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Object-Groups.html#Object-Groups" title="Object Groups">
<link rel="prev" href="Bar-series.html#Bar-series" title="Bar series">
<link rel="next" href="Error-bar-series.html#Error-bar-series" title="Error bar series">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<p>
<a name="Contour-groups"></a>
Next: <a rel="next" accesskey="n" href="Error-bar-series.html#Error-bar-series">Error bar series</a>,
Previous: <a rel="previous" accesskey="p" href="Bar-series.html#Bar-series">Bar series</a>,
Up: <a rel="up" accesskey="u" href="Object-Groups.html#Object-Groups">Object Groups</a>
<hr>
</div>
<h5 class="subsubsection">15.2.8.4 Contour groups</h5>
<p><a name="index-series-objects-1236"></a><a name="index-contour-series-1237"></a>
Contour group objects are created by the <code>contour</code>, <code>contourf</code>
and <code>contour3</code> functions. The are equally one of the handles returned
by the <code>surfc</code> and <code>meshc</code> functions. The properties of the contour
group are
<dl>
<dt><code>contourmatrix</code><dd>A read only property that contains the data return by <code>contourc</code> used to
create the contours of the plot.
<br><dt><code>fill</code><dd>A radio property that can have the values "on" or "off" that flags whether the
contours to plot are to be filled.
<br><dt><code>zlevelmode</code><dt><code>zlevel</code><dd>The radio property <code>zlevelmode</code> can have the values "none", "auto" or
"manual". When its value is "none" there is no z component to the plotted
contours. When its value is "auto" the z value of the plotted contours is
at the same value as the contour itself. If the value is "manual", then the
z value at which to plot the contour is determined by the <code>zlevel</code>
property.
<br><dt><code>levellistmode</code><dt><code>levellist</code><dt><code>levelstepmode</code><dt><code>levelstep</code><dd>If <code>levellistmode</code> is "manual", then the levels at which to plot the
contours is determined by <code>levellist</code>. If <code>levellistmode</code> is
set to "auto", then the distance between contours is determined by
<code>levelstep</code>. If both <code>levellistmode</code> and <code>levelstepmode</code>
are set to "auto", then there are assumed to be 10 equal spaced contours.
<br><dt><code>textlistmode</code><dt><code>textlist</code><dt><code>textstepmode</code><dt><code>textstep</code><dd>If <code>textlistmode</code> is "manual", then the labelled contours
is determined by <code>textlist</code>. If <code>textlistmode</code> is set to
"auto", then the distance between labelled contours is determined by
<code>textstep</code>. If both <code>textlistmode</code> and <code>textstepmode</code>
are set to "auto", then there are assumed to be 10 equal spaced
labelled contours.
<br><dt><code>showtext</code><dd>Flag whether the contour labels are shown or not.
<br><dt><code>labelspacing</code><dd>The distance between labels on a single contour in points.
<br><dt><code>linewidth</code><br><dt><code>linestyle</code><br><dt><code>linecolor</code><dd>The properties of the contour lines. The properties <code>linewidth</code> and
<code>linestyle</code> are similar to the corresponding properties for lines. The
property <code>linecolor</code> is a color property (see <a href="Colors.html#Colors">Colors</a>), that can also
have the values of "none" or "auto". If <code>linecolor</code> is "none", then no
contour line is drawn. If <code>linecolor</code> is "auto" then the line color is
determined by the colormap.
<br><dt><code>xdata</code><dt><code>ydata</code><dt><code>zdata</code><dd>The original x, y, and z data of the contour lines.
<br><dt><code>xdatasource</code><dt><code>ydatasource</code><dt><code>zdatasource</code><dd>Data source variables.
</dl>
</body></html>
|