File: plot-lineproperties.texi

package info (click to toggle)
octave 10.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 145,388 kB
  • sloc: cpp: 335,976; ansic: 82,241; fortran: 20,963; objc: 9,402; sh: 8,756; yacc: 4,392; lex: 4,333; perl: 1,544; java: 1,366; awk: 1,259; makefile: 659; xml: 192
file content (298 lines) | stat: -rw-r--r-- 11,468 bytes parent folder | download | duplicates (2)
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
@c DO NOT EDIT!  Generated automatically by genpropdoc.m.

@c Copyright (C) 2014-2025 The Octave Project Developers
@c
@c See the file COPYRIGHT.md in the top-level directory of this
@c distribution or <https://octave.org/copyright/>.
@c
@c This file is part of Octave.
@c
@c Octave is free software: you can redistribute it and/or modify it
@c under the terms of the GNU General Public License as published by
@c the Free Software Foundation, either version 3 of the License, or
@c (at your option) any later version.
@c
@c Octave is distributed in the hope that it will be useful, but
@c WITHOUT ANY WARRANTY; without even the implied warranty of
@c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
@c GNU General Public License for more details.
@c
@c You should have received a copy of the GNU General Public License
@c along with Octave; see the file COPYING.  If not, see
@c <https://www.gnu.org/licenses/>.

Properties of @code{line} objects (@pxref{XREFline,,line}):

@subsubheading Categories:

@ref{XREFlinecategoryCallbackExecution, , @w{Callback Execution}}@: | @ref{XREFlinecategoryCoordinateData, , @w{Coordinate Data}}@: | @ref{XREFlinecategoryCreation/Deletion, , @w{Creation/Deletion}}@: | @ref{XREFlinecategoryDisplay, , @w{Display}}@: | @ref{XREFlinecategoryLegendOptions, , @w{Legend Options}}@: | @ref{XREFlinecategoryLineAppearance, , @w{Line Appearance}}@: | @ref{XREFlinecategoryMarkerAppearance, , @w{Marker Appearance}}@: | @ref{XREFlinecategoryMouseInteraction, , @w{Mouse Interaction}}@: | @ref{XREFlinecategoryObjectIdentification, , @w{Object Identification}}@: | @ref{XREFlinecategoryParent/Children, , @w{Parent/Children}}@: 

@anchor{XREFlinecategoryCallbackExecution}
@subsubheading Callback Execution

@table @asis

@anchor{XREFlinebusyaction}
@prindex line busyaction
@item @code{busyaction}: @qcode{"cancel"} | @{@qcode{"queue"}@}
Define how Octave handles the execution of this object's callback properties when it is unable to interrupt another object's executing callback.  This is only relevant when the currently executing callback object has its @code{interruptible} property set to @qcode{"off"}.  The @code{busyaction} property of the interrupting callback object indicates whether the interrupting callback is queued (@qcode{"queue"} (default)) or discarded (@qcode{"cancel"}).
@xref{Callbacks, , @w{Callbacks section}}.


@anchor{XREFlineinterruptible}
@prindex line interruptible
@item @code{interruptible}: @qcode{"off"} | @{@qcode{"on"}@}
Specify whether this object's callback functions may be interrupted by other callbacks.  By default @code{interruptible} is @qcode{"on"} and callbacks that make use of @code{drawnow}, @code{figure}, @code{waitfor}, @code{getframe} or @code{pause} functions are eventually interrupted.
@xref{Callbacks, , @w{Callbacks section}}.

@end table

@anchor{XREFlinecategoryCoordinateData}
@subsubheading Coordinate Data

@table @asis

@anchor{XREFlinexdata}
@prindex line xdata
@item @code{xdata}: vector, def. @code{[0   1]}
Vector of x data to be plotted.


@anchor{XREFlinexdatasource}
@prindex line xdatasource
@item @code{xdatasource}: string, def. @qcode{""}
Name of a vector in the current base workspace to use as x data.


@anchor{XREFlineydata}
@prindex line ydata
@item @code{ydata}: vector, def. @code{[0   1]}
Vector of y data to be plotted.


@anchor{XREFlineydatasource}
@prindex line ydatasource
@item @code{ydatasource}: string, def. @qcode{""}
Name of a vector in the current base workspace to use as y data.


@anchor{XREFlinezdata}
@prindex line zdata
@item @code{zdata}: vector, def. @code{[](0x0)}
Vector of z data to be plotted.


@anchor{XREFlinezdatasource}
@prindex line zdatasource
@item @code{zdatasource}: string, def. @qcode{""}
Name of a vector in the current base workspace to use as z data.

@end table

@anchor{XREFlinecategoryCreation/Deletion}
@subsubheading Creation/Deletion

@table @asis

@anchor{XREFlinebeingdeleted}
@prindex line beingdeleted
@item @code{beingdeleted}: @{@qcode{"off"}@} | @qcode{"on"}
Property indicating that a function has initiated deletion of the object.  @code{beingdeleted} is set to true until the object no longer exists.


@anchor{XREFlinecreatefcn}
@prindex line createfcn
@item @code{createfcn}: string | function handle, def. @code{[](0x0)}
Callback function executed immediately after line has been created.  Function is set by using default property on root object, e.g., @code{set (groot, "defaultlinecreatefcn", 'disp ("line created!")')}.

For information on how to write graphics listener functions see @ref{Callbacks, , @w{Callbacks section}}.


@anchor{XREFlinedeletefcn}
@prindex line deletefcn
@item @code{deletefcn}: string | function handle, def. @code{[](0x0)}
Callback function executed immediately before line is deleted.

For information on how to write graphics listener functions see @ref{Callbacks, , @w{Callbacks section}}.

@end table

@anchor{XREFlinecategoryDisplay}
@subsubheading Display

@table @asis

@anchor{XREFlineclipping}
@prindex line clipping
@item @code{clipping}: @qcode{"off"} | @{@qcode{"on"}@}
If @code{clipping} is @qcode{"on"}, the line is clipped in its parent axes limits.


@anchor{XREFlinevisible}
@prindex line visible
@item @code{visible}: @qcode{"off"} | @{@qcode{"on"}@}
If @code{visible} is @qcode{"off"}, the line is not rendered on screen.

@end table

@anchor{XREFlinecategoryLegendOptions}
@subsubheading Legend Options

@table @asis

@anchor{XREFlinedisplayname}
@prindex line displayname
@item @code{displayname}: string | cell array of strings, def. @qcode{""}
Text for the legend entry corresponding to this line.

@end table

@anchor{XREFlinecategoryLineAppearance}
@subsubheading Line Appearance

@table @asis

@anchor{XREFlinecolor}
@prindex line color
@item @code{color}: colorspec, def. @code{[0   0   0]}
Color of the line object.  @xref{Colors, , colorspec}.


@anchor{XREFlinelinejoin}
@prindex line linejoin
@item @code{linejoin}: @qcode{"chamfer"} | @qcode{"miter"} | @{@qcode{"round"}@}
Control the shape of the junction of line segments.  This property currently only affects the printed output.


@anchor{XREFlinelinestyle}
@prindex line linestyle
@item @code{linestyle}: @{@qcode{"-"}@} | @qcode{"--"} | @qcode{"-."} | @qcode{":"} | @qcode{"none"}
@xref{Line Styles}.


@anchor{XREFlinelinewidth}
@prindex line linewidth
@item @code{linewidth}: scalar, def. @code{0.5000}
Width of the line object measured in points.

@end table

@anchor{XREFlinecategoryMarkerAppearance}
@subsubheading Marker Appearance

@table @asis

@anchor{XREFlinemarker}
@prindex line marker
@item @code{marker}: @qcode{"*"} | @qcode{"+"} | @qcode{"."} | @qcode{"<"} | @qcode{">"} | @qcode{"^"} | @qcode{"_"} | @qcode{"d"} | @qcode{"diamond"} | @qcode{"h"} | @qcode{"hexagram"} | @{@qcode{"none"}@} | @qcode{"o"} | @qcode{"p"} | @qcode{"pentagram"} | @qcode{"s"} | @qcode{"square"} | @qcode{"v"} | @qcode{"x"} | @qcode{"|"}
Shape of the marker for each data point.  @xref{Marker Styles}.


@anchor{XREFlinemarkeredgecolor}
@prindex line markeredgecolor
@item @code{markeredgecolor}: @{@qcode{"auto"}@} | @qcode{"none"}
Color of the edge of the markers.  When set to @qcode{"auto"}, the marker edges have the same color as the line.  If set to @qcode{"none"}, no marker edges are displayed.  This property can also be set to any color.  @xref{Colors, , colorspec}.


@anchor{XREFlinemarkerfacecolor}
@prindex line markerfacecolor
@item @code{markerfacecolor}: @qcode{"auto"} | @{@qcode{"none"}@}
Color of the face of the markers.  When set to @qcode{"auto"}, the marker faces have the same color as the line.  If set to @qcode{"none"}, the marker faces are not displayed.  This property can also be set to any color.  @xref{Colors, , colorspec}.


@anchor{XREFlinemarkersize}
@prindex line markersize
@item @code{markersize}: scalar, def. @code{6}
Size of the markers measured in points.

@end table

@anchor{XREFlinecategoryMouseInteraction}
@subsubheading Mouse Interaction

@table @asis

@anchor{XREFlinebuttondownfcn}
@prindex line buttondownfcn
@item @code{buttondownfcn}: string | function handle, def. @code{[](0x0)}
For information on how to write graphics listener functions see @ref{Callbacks, , @w{Callbacks section}}.


@anchor{XREFlinecontextmenu}
@prindex line contextmenu
@item @code{contextmenu}: graphics handle, def. @code{[](0x0)}
Graphics handle of the uicontextmenu object that is currently associated to this line object.


@anchor{XREFlinehittest}
@prindex line hittest
@item @code{hittest}: @qcode{"off"} | @{@qcode{"on"}@}
Specify whether line processes mouse events or passes them to ancestors of the object.  When enabled, the object may respond to mouse clicks by evaluating the @qcode{"buttondownfcn"}, showing the uicontextmenu, and eventually becoming the root @qcode{"currentobject"}.  This property is only relevant when the object can accept mouse clicks which is determined by the @qcode{"pickableparts"} property.  @xref{XREFlinepickableparts, , @w{pickableparts property}}.


@anchor{XREFlinepickableparts}
@prindex line pickableparts
@item @code{pickableparts}: @qcode{"all"} | @qcode{"none"} | @{@qcode{"visible"}@}
Specify whether line will accept mouse clicks.  By default, @code{pickableparts} is @qcode{"visible"} and only visible parts of the line or its children may react to mouse clicks.  When @code{pickableparts} is @qcode{"all"} both visible and invisible parts (or children) may react to mouse clicks.  When @code{pickableparts} is @qcode{"none"} mouse clicks on the object are ignored and transmitted to any objects underneath this one.  When an object is configured to accept mouse clicks the @qcode{"hittest"} property will determine how they are processed.  @xref{XREFlinehittest, , @w{hittest property}}.


@anchor{XREFlineselected}
@prindex line selected
@item @code{selected}: @{@qcode{"off"}@} | @qcode{"on"}
Property indicates whether this line is selected.


@anchor{XREFlineselectionhighlight}
@prindex line selectionhighlight
@item @code{selectionhighlight}: @qcode{"off"} | @{@qcode{"on"}@}
If @code{selectionhighlight} is @qcode{"on"}, then the line's selection state is visually highlighted.

@end table

@anchor{XREFlinecategoryObjectIdentification}
@subsubheading Object Identification

@table @asis

@anchor{XREFlinetag}
@prindex line tag
@item @code{tag}: string, def. @qcode{""}
A user-defined string to label the graphics object.


@anchor{XREFlinetype}
@prindex line type
@item @code{type} (read-only): string
Class name of the graphics object.  @code{type} is always @qcode{"line"}.


@anchor{XREFlineuserdata}
@prindex line userdata
@item @code{userdata}: Any Octave data, def. @code{[](0x0)}
User-defined data to associate with the graphics object.

@end table

@anchor{XREFlinecategoryParent/Children}
@subsubheading Parent/Children

@table @asis

@anchor{XREFlinechildren}
@prindex line children
@item @code{children} (read-only): vector of graphics handles, def. @code{[](0x1)}
Child objects for lines is not yet implemented for line objects.  @code{children} is unused.


@anchor{XREFlinehandlevisibility}
@prindex line handlevisibility
@item @code{handlevisibility}: @qcode{"callback"} | @qcode{"off"} | @{@qcode{"on"}@}
If @code{handlevisibility} is @qcode{"off"}, the line's handle is not visible in its parent's @qcode{"children"} property.


@anchor{XREFlineparent}
@prindex line parent
@item @code{parent}: graphics handle
Handle of the parent graphics object.

@end table