File: plot-axesproperties.texi

package info (click to toggle)
octave 4.4.1-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 114,832 kB
  • sloc: cpp: 310,009; ansic: 54,616; fortran: 22,631; yacc: 8,706; sh: 8,231; objc: 7,972; lex: 3,897; perl: 1,540; java: 1,309; awk: 1,070; makefile: 415; xml: 59
file content (803 lines) | stat: -rw-r--r-- 27,229 bytes parent folder | download
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
@c DO NOT EDIT!  Generated automatically by genpropdoc.m.

@c Copyright (C) 2014-2018 Pantxo Diribarne
@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/>.

@table @asis

@anchor{XREFaxesactivepositionproperty}
@prindex axes activepositionproperty
@item @code{activepositionproperty}: @{@qcode{"outerposition"}@} | @qcode{"position"}
Specify which of @qcode{"position"} or @qcode{"outerposition"} properties takes precedence when axes annotations extent changes.  @xref{XREFaxesposition, , @w{position property}}, and @ref{XREFaxesposition, , @w{outerposition property}}.


@anchor{XREFaxesalim}
@prindex axes alim
@item @code{alim}: def. @code{[0   1]}
Transparency is not yet implemented for axes objects.  @code{alim} is unused.


@anchor{XREFaxesalimmode}
@prindex axes alimmode
@item @code{alimmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesambientlightcolor}
@prindex axes ambientlightcolor
@item @code{ambientlightcolor}: def. @code{[1   1   1]}
@code{ambientlightcolor} is unused.


@anchor{XREFaxesbeingdeleted}
@prindex axes beingdeleted
@item @code{beingdeleted}: @{@qcode{"off"}@} | @qcode{"on"}



@anchor{XREFaxesbox}
@prindex axes box
@item @code{box}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether the axes has a surrounding box.


@anchor{XREFaxesboxstyle}
@prindex axes boxstyle
@item @code{boxstyle}: @{@qcode{"back"}@} | @qcode{"full"}
For 3-D axes, control whether the @qcode{"full"} box is drawn or only the 3 @qcode{"back"} axes


@anchor{XREFaxesbusyaction}
@prindex axes 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{XREFaxesbuttondownfcn}
@prindex axes 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{XREFaxescameraposition}
@prindex axes cameraposition
@item @code{cameraposition}: three-element vector, def. @code{[0.50000   0.50000   9.16025]}



@anchor{XREFaxescamerapositionmode}
@prindex axes camerapositionmode
@item @code{camerapositionmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxescameratarget}
@prindex axes cameratarget
@item @code{cameratarget}: three-element vector, def. @code{[0.50000   0.50000   0.50000]}



@anchor{XREFaxescameratargetmode}
@prindex axes cameratargetmode
@item @code{cameratargetmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxescameraupvector}
@prindex axes cameraupvector
@item @code{cameraupvector}: three-element vector, def. @code{[-0   1   0]}



@anchor{XREFaxescameraupvectormode}
@prindex axes cameraupvectormode
@item @code{cameraupvectormode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxescameraviewangle}
@prindex axes cameraviewangle
@item @code{cameraviewangle}: scalar, def. @code{6.6086}



@anchor{XREFaxescameraviewanglemode}
@prindex axes cameraviewanglemode
@item @code{cameraviewanglemode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxeschildren}
@prindex axes children
@item @code{children} (read-only): vector of graphics handles, def. @code{[](0x1)}
Graphics handles of the axes's children.


@anchor{XREFaxesclim}
@prindex axes clim
@item @code{clim}: two-element vector, def. @code{[0   1]}
Define the limits for the color axis of image children.  Setting @code{clim} also forces the @code{climmode} property to be set to @qcode{"manual"}.  @xref{XREFpcolor, , @w{pcolor function}}.


@anchor{XREFaxesclimmode}
@prindex axes climmode
@item @code{climmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesclipping}
@prindex axes clipping
@item @code{clipping}: @qcode{"off"} | @{@qcode{"on"}@}
@code{clipping} is unused.


@anchor{XREFaxesclippingstyle}
@prindex axes clippingstyle
@item @code{clippingstyle}: @{@qcode{"3dbox"}@} | @qcode{"rectangle"}
@code{clippingstyle} is unused.


@anchor{XREFaxescolor}
@prindex axes color
@item @code{color}: colorspec, def. @code{[1   1   1]}
Color of the axes background.  @xref{Colors, , colorspec}.


@anchor{XREFaxescolormap}
@prindex axes colormap
@item @code{colormap}: def. 64-by-3 double



@anchor{XREFaxescolororder}
@prindex axes colororder
@item @code{colororder}: N-by-3 RGB matrix, def. 7-by-3 double
RGB values used by plot function for automatic line coloring.


@anchor{XREFaxescolororderindex}
@prindex axes colororderindex
@item @code{colororderindex}: def. @code{1}
@code{colororderindex} is unused.


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

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


@anchor{XREFaxescurrentpoint}
@prindex axes currentpoint
@item @code{currentpoint}: 2-by-3 matrix, def. 2-by-3 double
Matrix @code{[xf, yf, zf; xb, yb, zb]} which holds the coordinates (in axes data units) of the point over which the mouse pointer was when the mouse button was pressed.  If a mouse callback function is defined, @code{currentpoint} holds the pointer coordinates at the time the mouse button was pressed.  For 3-D plots, the first row of the returned matrix specifies the point nearest to the current camera position and the second row the furthest point.  The two points forms a line which is perpendicular to the screen.


@anchor{XREFaxesdataaspectratio}
@prindex axes dataaspectratio
@item @code{dataaspectratio}: three-element vector, def. @code{[1   1   1]}
Specify the relative height and width of the data displayed in the axes.  Setting @code{dataaspectratio} to @w{@code{[1, 2]}} causes the length of one unit as displayed on the x-axis to be the same as the length of 2 units on the y-axis.  @xref{XREFdaspect, , daspect function}.  Setting @code{dataaspectratio} also forces the @code{dataaspectratiomode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesdataaspectratiomode}
@prindex axes dataaspectratiomode
@item @code{dataaspectratiomode}: @{@qcode{"auto"}@} | @qcode{"manual"}



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

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


@anchor{XREFaxesfontangle}
@prindex axes fontangle
@item @code{fontangle}: @qcode{"italic"} | @{@qcode{"normal"}@}
Control whether the font is italic or normal.


@anchor{XREFaxesfontname}
@prindex axes fontname
@item @code{fontname}: string, def. @qcode{"*"}
Name of font used for text rendering.  When setting this property, the text rendering engine will search for a matching font in your system.  If none is found then text is rendered using a default sans serif font (same as the default @qcode{"*"} value).


@anchor{XREFaxesfontsize}
@prindex axes fontsize
@item @code{fontsize}: scalar, def. @code{10}
Size of the font used for text rendering.  @xref{XREFaxesfontunits, , fontunits property}.


@anchor{XREFaxesfontsmoothing}
@prindex axes fontsmoothing
@item @code{fontsmoothing}: @qcode{"off"} | @{@qcode{"on"}@}
@code{fontsmoothing} is unused.


@anchor{XREFaxesfontunits}
@prindex axes fontunits
@item @code{fontunits}: @qcode{"centimeters"} | @qcode{"inches"} | @qcode{"normalized"} | @qcode{"pixels"} | @{@qcode{"points"}@}
Units used to interpret the @qcode{"fontsize"} property.


@anchor{XREFaxesfontweight}
@prindex axes fontweight
@item @code{fontweight}: @qcode{"bold"} | @{@qcode{"normal"}@}
Control the variant of the base font used for text rendering.


@anchor{XREFaxesgridalpha}
@prindex axes gridalpha
@item @code{gridalpha}: def. @code{0.15000}
Transparency is not yet implemented for axes objects.  @code{gridalpha} is unused.


@anchor{XREFaxesgridalphamode}
@prindex axes gridalphamode
@item @code{gridalphamode}: @{@qcode{"auto"}@} | @qcode{"manual"}
@code{gridalphamode} is unused.


@anchor{XREFaxesgridcolor}
@prindex axes gridcolor
@item @code{gridcolor}: def. @code{[0.15000   0.15000   0.15000]}
@code{gridcolor} is unused.


@anchor{XREFaxesgridcolormode}
@prindex axes gridcolormode
@item @code{gridcolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}
@code{gridcolormode} is unused.


@anchor{XREFaxesgridlinestyle}
@prindex axes gridlinestyle
@item @code{gridlinestyle}: @{@qcode{"-"}@} | @qcode{"--"} | @qcode{"-."} | @qcode{":"} | @qcode{"none"}



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


@anchor{XREFaxeshittest}
@prindex axes hittest
@item @code{hittest}: @qcode{"off"} | @{@qcode{"on"}@}
Specify whether axes 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{XREFaxespickableparts, , @w{pickableparts property}}.


@anchor{XREFaxesinterruptible}
@prindex axes 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}}.


@anchor{XREFaxeslabelfontsizemultiplier}
@prindex axes labelfontsizemultiplier
@item @code{labelfontsizemultiplier}: def. @code{1.1000}
Ratio between the x/y/zlabel fontsize and the tick label fontsize


@anchor{XREFaxeslayer}
@prindex axes layer
@item @code{layer}: @{@qcode{"bottom"}@} | @qcode{"top"}
Control whether the axes is drawn below child graphics objects (ticks, labels, etc.@: covered by plotted objects) or above.


@anchor{XREFaxeslinestyleorder}
@prindex axes linestyleorder
@item @code{linestyleorder}: def. @qcode{"-"}
@code{linestyleorder} is unused.


@anchor{XREFaxeslinestyleorderindex}
@prindex axes linestyleorderindex
@item @code{linestyleorderindex}: def. @code{1}
@code{linestyleorderindex} is unused.


@anchor{XREFaxeslinewidth}
@prindex axes linewidth
@item @code{linewidth}: def. @code{0.50000}
Width of the main axes lines


@anchor{XREFaxesminorgridalpha}
@prindex axes minorgridalpha
@item @code{minorgridalpha}: def. @code{0.25000}
Transparency is not yet implemented for axes objects.  @code{minorgridalpha} is unused.


@anchor{XREFaxesminorgridalphamode}
@prindex axes minorgridalphamode
@item @code{minorgridalphamode}: @{@qcode{"auto"}@} | @qcode{"manual"}
@code{minorgridalphamode} is unused.


@anchor{XREFaxesminorgridcolor}
@prindex axes minorgridcolor
@item @code{minorgridcolor}: def. @code{[0.10000   0.10000   0.10000]}
@code{minorgridcolor} is unused.


@anchor{XREFaxesminorgridcolormode}
@prindex axes minorgridcolormode
@item @code{minorgridcolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}
@code{minorgridcolormode} is unused.


@anchor{XREFaxesminorgridlinestyle}
@prindex axes minorgridlinestyle
@item @code{minorgridlinestyle}: @qcode{"-"} | @qcode{"--"} | @qcode{"-."} | @{@qcode{":"}@} | @qcode{"none"}



@anchor{XREFaxesmousewheelzoom}
@prindex axes mousewheelzoom
@item @code{mousewheelzoom}: scalar in the range (0, 1), def. @code{0.50000}
Fraction of axes limits to zoom for each wheel movement.


@anchor{XREFaxesnextplot}
@prindex axes nextplot
@item @code{nextplot}: @qcode{"add"} | @{@qcode{"replace"}@} | @qcode{"replacechildren"}
@code{nextplot} is used by high level plotting functions to decide what to do with graphics objects already present in the axes.  @xref{XREFnewplot, , @w{newplot function}}.  The state of @code{nextplot} is typically controlled using the @code{hold} function.  @xref{XREFhold, , @w{hold function}}.


@anchor{XREFaxesouterposition}
@prindex axes outerposition
@item @code{outerposition}: four-element vector, def. @code{[0   0   1   1]}
Specify the position of the plot including titles, axes, and legend.  The four elements of the vector are the coordinates of the lower left corner and width and height of the plot, in units normalized to the width and height of the plot window.  For example, @code{[0.2, 0.3, 0.4, 0.5]} sets the lower left corner of the axes at @math{(0.2, 0.3)} and the width and height to be 0.4 and 0.5 respectively.  @xref{XREFaxesposition, , @w{position property}}.


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


@anchor{XREFaxespickableparts}
@prindex axes pickableparts
@item @code{pickableparts}: @qcode{"all"} | @qcode{"none"} | @{@qcode{"visible"}@}
Specify whether axes will accept mouse clicks.  By default, @code{pickableparts} is @qcode{"visible"} and only visible parts of the axes 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{XREFaxeshittest, , @w{hittest property}}.


@anchor{XREFaxesplotboxaspectratio}
@prindex axes plotboxaspectratio
@item @code{plotboxaspectratio}: def. @code{[1   1   1]}
@xref{XREFpbaspect, , pbaspect function}.  Setting @code{plotboxaspectratio} also forces the @code{plotboxaspectratiomode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesplotboxaspectratiomode}
@prindex axes plotboxaspectratiomode
@item @code{plotboxaspectratiomode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesposition}
@prindex axes position
@item @code{position}: four-element vector, def. @code{[0.13000   0.11000   0.77500   0.81500]}
Specify the position of the plot excluding titles, axes, and legend.  The four elements of the vector are the coordinates of the lower left corner and width and height of the plot, in units normalized to the width and height of the plot window.  For example, @code{[0.2, 0.3, 0.4, 0.5]} sets the lower left corner of the axes at @math{(0.2, 0.3)} and the width and height to be 0.4 and 0.5 respectively.  @xref{XREFaxesouterposition, , @w{outerposition property}}.


@anchor{XREFaxesprojection}
@prindex axes projection
@item @code{projection}: @{@qcode{"orthographic"}@} | @qcode{"perspective"}
@code{projection} is unused.


@anchor{XREFaxesselected}
@prindex axes selected
@item @code{selected}: @{@qcode{"off"}@} | @qcode{"on"}



@anchor{XREFaxesselectionhighlight}
@prindex axes selectionhighlight
@item @code{selectionhighlight}: @qcode{"off"} | @{@qcode{"on"}@}



@anchor{XREFaxessortmethod}
@prindex axes sortmethod
@item @code{sortmethod}: @qcode{"childorder"} | @{@qcode{"depth"}@}
@code{sortmethod} is unused.


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


@anchor{XREFaxestickdir}
@prindex axes tickdir
@item @code{tickdir}: @{@qcode{"in"}@} | @qcode{"out"}
Control whether axes tick marks project "in" to the plot box or "out".  Setting @code{tickdir} also forces the @code{tickdirmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxestickdirmode}
@prindex axes tickdirmode
@item @code{tickdirmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesticklabelinterpreter}
@prindex axes ticklabelinterpreter
@item @code{ticklabelinterpreter}: @qcode{"latex"} | @qcode{"none"} | @{@qcode{"tex"}@}
Control the way x/y/zticklabel properties are interpreted.
@xref{XREFinterpreterusage, , @w{Use of the interpreter property}}.


@anchor{XREFaxesticklength}
@prindex axes ticklength
@item @code{ticklength}: two-element vector, def. @code{[0.010000   0.025000]}
Two-element vector @code{[2Dlen 3Dlen]} specifying the length of the tickmarks relative to the longest visible axis.


@anchor{XREFaxestightinset}
@prindex axes tightinset
@item @code{tightinset} (read-only): four-element vector, def. @code{[0.042857   0.035725   0.000000   0.023810]}
Size of the @code{[left bottom right top]} margins around the axes that enclose labels and title annotations.


@anchor{XREFaxestitle}
@prindex axes title
@item @code{title}: graphics handle
Graphics handle of the title text object.


@anchor{XREFaxestitlefontsizemultiplier}
@prindex axes titlefontsizemultiplier
@item @code{titlefontsizemultiplier}: positive scalar, def. @code{1.1000}
Ratio between the title fontsize and the tick label fontsize


@anchor{XREFaxestitlefontweight}
@prindex axes titlefontweight
@item @code{titlefontweight}: @{@qcode{"bold"}@} | @qcode{"normal"}
Control variant of base font used for the axes title.


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


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


@anchor{XREFaxesunits}
@prindex axes units
@item @code{units}: @qcode{"centimeters"} | @qcode{"characters"} | @qcode{"inches"} | @{@qcode{"normalized"}@} | @qcode{"pixels"} | @qcode{"points"}
Units used to interpret the @qcode{"position"}, @qcode{"outerposition"}, and @qcode{"tightinset"} properties.


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


@anchor{XREFaxesview}
@prindex axes view
@item @code{view}: two-element vector, def. @code{[0   90]}
Two-element vector @code{[azimuth elevation]} specifying the viewpoint for three-dimensional plots


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


@anchor{XREFaxesxaxislocation}
@prindex axes xaxislocation
@item @code{xaxislocation}: @{@qcode{"bottom"}@} | @qcode{"origin"} | @qcode{"top"} | @qcode{"zero"}
Control the x axis location.


@anchor{XREFaxesxcolor}
@prindex axes xcolor
@item @code{xcolor}: @{colorspec@} | @qcode{"none"}, def. @code{[0.15000   0.15000   0.15000]}
Color of the x-axis.  @xref{Colors, , colorspec}.  Setting @code{xcolor} also forces the @code{xcolormode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesxcolormode}
@prindex axes xcolormode
@item @code{xcolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesxdir}
@prindex axes xdir
@item @code{xdir}: @{@qcode{"normal"}@} | @qcode{"reverse"}
Direction of the x axis: @qcode{"normal"} is left to right.


@anchor{XREFaxesxgrid}
@prindex axes xgrid
@item @code{xgrid}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether major x grid lines are displayed.


@anchor{XREFaxesxlabel}
@prindex axes xlabel
@item @code{xlabel}: graphics handle
Graphics handle of the x label text object.


@anchor{XREFaxesxlim}
@prindex axes xlim
@item @code{xlim}: two-element vector, def. @code{[0   1]}
Two-element vector @code{[xmin xmax]} specifying the limits for the x-axis.  Setting @code{xlim} also forces the @code{xlimmode} property to be set to @qcode{"manual"}.   @xref{XREFxlim, , @w{xlim function}}.


@anchor{XREFaxesxlimmode}
@prindex axes xlimmode
@item @code{xlimmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesxminorgrid}
@prindex axes xminorgrid
@item @code{xminorgrid}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether minor x grid lines are displayed.


@anchor{XREFaxesxminortick}
@prindex axes xminortick
@item @code{xminortick}: @{@qcode{"off"}@} | @qcode{"on"}



@anchor{XREFaxesxscale}
@prindex axes xscale
@item @code{xscale}: @{@qcode{"linear"}@} | @qcode{"log"}



@anchor{XREFaxesxtick}
@prindex axes xtick
@item @code{xtick}: vector
Position of x tick marks.  Setting @code{xtick} also forces the @code{xtickmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesxticklabel}
@prindex axes xticklabel
@item @code{xticklabel}: string | cell array of strings, def. 1-by-6 cell
Labels of x tick marks.  Setting @code{xticklabel} also forces the @code{xticklabelmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesxticklabelmode}
@prindex axes xticklabelmode
@item @code{xticklabelmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesxticklabelrotation}
@prindex axes xticklabelrotation
@item @code{xticklabelrotation}: def. @code{0}
@code{xticklabelrotation} is unused.


@anchor{XREFaxesxtickmode}
@prindex axes xtickmode
@item @code{xtickmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesyaxislocation}
@prindex axes yaxislocation
@item @code{yaxislocation}: @{@qcode{"left"}@} | @qcode{"origin"} | @qcode{"right"} | @qcode{"zero"}
Control the y-axis location.


@anchor{XREFaxesycolor}
@prindex axes ycolor
@item @code{ycolor}: @{colorspec@} | @qcode{"none"}, def. @code{[0.15000   0.15000   0.15000]}
Color of the y-axis.  @xref{Colors, , colorspec}.


@anchor{XREFaxesycolormode}
@prindex axes ycolormode
@item @code{ycolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesydir}
@prindex axes ydir
@item @code{ydir}: @{@qcode{"normal"}@} | @qcode{"reverse"}
Direction of the y-axis: @qcode{"normal"} is bottom to top.


@anchor{XREFaxesygrid}
@prindex axes ygrid
@item @code{ygrid}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether major y grid lines are displayed.


@anchor{XREFaxesylabel}
@prindex axes ylabel
@item @code{ylabel}: graphics handle
Graphics handle of the y label text object.


@anchor{XREFaxesylim}
@prindex axes ylim
@item @code{ylim}: two-element vector, def. @code{[0   1]}
Two-element vector @code{[ymin ymax]} specifying the limits for the y-axis.  Setting @code{ylim} also forces the @code{ylimmode} property to be set to @qcode{"manual"}.  @xref{XREFylim, , @w{ylim function}}.


@anchor{XREFaxesylimmode}
@prindex axes ylimmode
@item @code{ylimmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesyminorgrid}
@prindex axes yminorgrid
@item @code{yminorgrid}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether minor y grid lines are displayed.


@anchor{XREFaxesyminortick}
@prindex axes yminortick
@item @code{yminortick}: @{@qcode{"off"}@} | @qcode{"on"}



@anchor{XREFaxesyscale}
@prindex axes yscale
@item @code{yscale}: @{@qcode{"linear"}@} | @qcode{"log"}



@anchor{XREFaxesytick}
@prindex axes ytick
@item @code{ytick}: vector
Position of y tick marks.  Setting @code{ytick} also forces the @code{ytickmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesyticklabel}
@prindex axes yticklabel
@item @code{yticklabel}: string | cell array of strings, def. 1-by-6 cell
Labels of y tick marks.  Setting @code{yticklabel} also forces the @code{yticklabelmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesyticklabelmode}
@prindex axes yticklabelmode
@item @code{yticklabelmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxesyticklabelrotation}
@prindex axes yticklabelrotation
@item @code{yticklabelrotation}: def. @code{0}
@code{yticklabelrotation} is unused.


@anchor{XREFaxesytickmode}
@prindex axes ytickmode
@item @code{ytickmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxeszcolor}
@prindex axes zcolor
@item @code{zcolor}: @{colorspec@} | @qcode{"none"}, def. @code{[0.15000   0.15000   0.15000]}
Color of the z-axis.  @xref{Colors, , colorspec}.


@anchor{XREFaxeszcolormode}
@prindex axes zcolormode
@item @code{zcolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxeszdir}
@prindex axes zdir
@item @code{zdir}: @{@qcode{"normal"}@} | @qcode{"reverse"}



@anchor{XREFaxeszgrid}
@prindex axes zgrid
@item @code{zgrid}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether major z grid lines are displayed.


@anchor{XREFaxeszlabel}
@prindex axes zlabel
@item @code{zlabel}: graphics handle
Graphics handle of the z label text object.


@anchor{XREFaxeszlim}
@prindex axes zlim
@item @code{zlim}: two-element vector, def. @code{[0   1]}
Two-element vector @code{[zmin zmaz]} specifying the limits for the z-axis.  Setting @code{zlim} also forces the @code{zlimmode} property to be set to @qcode{"manual"}.  @xref{XREFzlim, , @w{zlim function}}.


@anchor{XREFaxeszlimmode}
@prindex axes zlimmode
@item @code{zlimmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxeszminorgrid}
@prindex axes zminorgrid
@item @code{zminorgrid}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether minor z grid lines are displayed.


@anchor{XREFaxeszminortick}
@prindex axes zminortick
@item @code{zminortick}: @{@qcode{"off"}@} | @qcode{"on"}



@anchor{XREFaxeszscale}
@prindex axes zscale
@item @code{zscale}: @{@qcode{"linear"}@} | @qcode{"log"}



@anchor{XREFaxesztick}
@prindex axes ztick
@item @code{ztick}: vector
Position of z tick marks.  Setting @code{ztick} also forces the @code{ztickmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxeszticklabel}
@prindex axes zticklabel
@item @code{zticklabel}: string | cell array of strings, def. 1-by-6 cell
Labels of z tick marks.  Setting @code{zticklabel} also forces the @code{zticklabelmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxeszticklabelmode}
@prindex axes zticklabelmode
@item @code{zticklabelmode}: @{@qcode{"auto"}@} | @qcode{"manual"}



@anchor{XREFaxeszticklabelrotation}
@prindex axes zticklabelrotation
@item @code{zticklabelrotation}: def. @code{0}
@code{zticklabelrotation} is unused.


@anchor{XREFaxesztickmode}
@prindex axes ztickmode
@item @code{ztickmode}: @{@qcode{"auto"}@} | @qcode{"manual"}


@end table