File: plot-axesproperties.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 (985 lines) | stat: -rw-r--r-- 43,274 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
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
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
@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{axes} objects (@pxref{XREFaxes,,axes}):

@subsubheading Categories:

@ref{XREFaxescategoryAutomaticChildProperties, , @w{Automatic Child Properties}}@: | @ref{XREFaxescategoryAxesBoxAppearance, , @w{Axes Box Appearance}}@: | @ref{XREFaxescategoryAxesGridAppearance, , @w{Axes Grid Appearance}}@: | @ref{XREFaxescategoryCallbackExecution, , @w{Callback Execution}}@: | @ref{XREFaxescategoryCameraandViewControls, , @w{Camera and View Controls}}@: | @ref{XREFaxescategoryColorandTransparency, , @w{Color and Transparency}}@: | @ref{XREFaxescategoryCreation/Deletion, , @w{Creation/Deletion}}@: | @ref{XREFaxescategoryDisplay, , @w{Display}}@: | @ref{XREFaxescategoryMouseInteraction, , @w{Mouse Interaction}}@: | @ref{XREFaxescategoryObjectIdentification, , @w{Object Identification}}@: | @ref{XREFaxescategoryObjectPosition, , @w{Object Position}}@: | @ref{XREFaxescategoryParent/Children, , @w{Parent/Children}}@: | @ref{XREFaxescategoryTextAppearance, , @w{Text Appearance}}@: 

@anchor{XREFaxescategoryAutomaticChildProperties}
@subsubheading Automatic Child Properties

@table @asis

@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 child object coloring.


@anchor{XREFaxescolororderindex}
@prindex axes colororderindex
@item @code{colororderindex}: integer, def. @code{1}
Index of the next color from the @ref{XREFaxescolororder, , @w{@qcode{"colororder"} property}} to be used by Axes-child objects.


@anchor{XREFaxeslinestyleorder}
@prindex axes linestyleorder
@item @code{linestyleorder}: def. @qcode{"-"}
List of linestyles to be used in order by axes child objects, specified as a cell array of line specification strings.  Note that the linestyle is only incremented after cycling through the full @ref{XREFaxescolororder, , @qcode{"colororder"}} list.  @xref{Line Styles}.


@anchor{XREFaxeslinestyleorderindex}
@prindex axes linestyleorderindex
@item @code{linestyleorderindex}: whole number scalar, def. @code{1}
Index of the next linestyle from the @ref{XREFaxeslinestyleorder, , @w{@qcode{"linestyleorder"} property}} to be used by Axes-child objects.


@anchor{XREFaxesnextseriesindex}
@prindex axes nextseriesindex
@item @code{nextseriesindex} (read-only): whole number scalar, def. @code{1}
Current index value into the @ref{XREFaxescolororder, , "colororder"} and @ref{XREFaxeslinestyleorder, , "linestyleorder"} properties, indicating the item that will be used by the next child object

@end table

@anchor{XREFaxescategoryAxesBoxAppearance}
@subsubheading Axes Box Appearance

@table @asis

@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{XREFaxescolor}
@prindex axes color
@item @code{color}: colorspec, def. @code{[1   1   1]}
Color of the axes background.  @xref{Colors, , colorspec}.


@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"}
Current state of the data aspect ratio mode, either manually set by the @ref{XREFaxesdataaspectratio, , @w{@qcode{"dataaspectratio"} property}} or automatically set by Octave in combination with other display properties to fit the data in the current view.


@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{XREFaxeslayout}
@prindex axes layout
@item @code{layout} (read-only): def. @code{[](0x0)}
Tiled and gridded chart layout is not yet implemented for axes objects.  @code{layout} is unused.


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


@anchor{XREFaxestickdir}
@prindex axes tickdir
@item @code{tickdir}: @qcode{"both"} | @{@qcode{"in"}@} | @qcode{"none"} | @qcode{"out"}
Control whether axes tick marks project @qcode{"in"} to the plot box or @qcode{"out"}.  The value @qcode{"both"} will draw tick marks both in and out.  The value @qcode{"none"} means no tick marks will be drawn, although tick labels will still be rendered.  Setting @code{tickdir} also forces the @code{tickdirmode} property to be set to @qcode{"manual"}.  Note that the default is @qcode{"in"} for 2-D and @qcode{"out"} for 3-D plots.


@anchor{XREFaxestickdirmode}
@prindex axes tickdirmode
@item @code{tickdirmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the tickdir mode, either manually set by the @ref{XREFaxestickdir, , @w{@qcode{"tickdir"} property}} or automatically set to the default for the current view.


@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{XREFaxestoolbar}
@prindex axes toolbar
@item @code{toolbar} (read-only): def. @code{[](0x0)}
AxesToolbar objects is not yet implemented for axes objects.  @code{toolbar} is unused.


@anchor{XREFaxesxaxis}
@prindex axes xaxis
@item @code{xaxis} (read-only): def. @code{[](0x0)}
Axes Ruler objects is not yet implemented for axes objects.  @code{xaxis} is unused.


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


@anchor{XREFaxesxcolor}
@prindex axes xcolor
@item @code{xcolor}: @{colorspec@} | @qcode{"none"}, def. @code{[0.1500   0.1500   0.1500]}
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"}
Current state of the setting determining the color that is applied to the x-axis grid lines.  If set to @qcode{"auto"} and/or the @ref{XREFaxesgridcolormode, , @w{@qcode{"gridcolormode"} property}} is set to @qcode{"manual"}, the x-axis grid color will be defined by the @ref{XREFaxesgridcolor, , @w{@qcode{"gridcolor"} property}}.  Otherwise the x-axis grid color will be defined by the @ref{XREFaxesxcolor, , @w{@qcode{"xcolor"} property}}.


@anchor{XREFaxesxdir}
@prindex axes xdir
@item @code{xdir}: @{@qcode{"normal"}@} | @qcode{"reverse"}
Direction of the x axis: @qcode{"normal"} is left to right in default 2-D and 3-D views.


@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{XREFaxesxlimitmethod}
@prindex axes xlimitmethod
@item @code{xlimitmethod}: @qcode{"padded"} | @{@qcode{"tickaligned"}@} | @qcode{"tight"}
Method used to determine the x-axis limits when the @code{xlimmode} property is @qcode{"auto"}.  The default value, @qcode{"tickaligned"} makes limits align with the closest ticks.  With value @qcode{"tight"} the limits are adjusted to enclose all the graphics objects in the axes, while with value @qcode{"padded"}, an additional margin of about 7% of the data extent is added around the objects.  @xref{XREFaxis, , @w{axis function}}.


@anchor{XREFaxesxlimmode}
@prindex axes xlimmode
@item @code{xlimmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the x-axis limit selection method, either manually set with the @ref{XREFaxesxlim, , @w{@qcode{"xlim"} property}} or automatically set to span the plotted data according to the @ref{XREFaxesxlimitmethod, , @w{@qcode{"xlimitmethod"} property}}.


@anchor{XREFaxesxminortick}
@prindex axes xminortick
@item @code{xminortick}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether minor x tick marks are displayed.


@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{XREFaxesxtickmode}
@prindex axes xtickmode
@item @code{xtickmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Setting to determine whether the xtick locations and spacing are set automatically by Octave or manually using the @ref{XREFaxesxtick, , @w{@qcode{"xtick"} property}}.


@anchor{XREFaxesyaxis}
@prindex axes yaxis
@item @code{yaxis} (read-only): def. @code{[](0x0)}
Axes Ruler objects is not yet implemented for axes objects.  @code{yaxis} is unused.


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


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


@anchor{XREFaxesycolormode}
@prindex axes ycolormode
@item @code{ycolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the setting determining the color that is applied to the y-axis grid lines.  If set to @qcode{"auto"} and/or the @ref{XREFaxesgridcolormode, , @w{@qcode{"gridcolormode"} property}} is set to @qcode{"manual"}, the y-axis grid color will be defined by the @ref{XREFaxesgridcolor, , @w{@qcode{"gridcolor"} property}}.  Otherwise the y-axis grid color will be defined by the @ref{XREFaxesycolor, , @w{@qcode{"ycolor"} property}}.


@anchor{XREFaxesydir}
@prindex axes ydir
@item @code{ydir}: @{@qcode{"normal"}@} | @qcode{"reverse"}
Direction of the y-axis: @qcode{"normal"} is bottom to top in 2-D and front to back in 3-D default views.


@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{XREFaxesylimitmethod}
@prindex axes ylimitmethod
@item @code{ylimitmethod}: @qcode{"padded"} | @{@qcode{"tickaligned"}@} | @qcode{"tight"}
Method used to determine the y-axis limits when the @code{xlimmode} property is @qcode{"auto"}.  The default value, @qcode{"tickaligned"} makes limits align with the closest ticks.  With value @qcode{"tight"} the limits are adjusted to enclose all the graphics objects in the axes, while with value @qcode{"padded"}, an additional margin of about 7% of the data extent is added around the objects.  @xref{XREFaxis, , @w{axis function}}.


@anchor{XREFaxesylimmode}
@prindex axes ylimmode
@item @code{ylimmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the y-axis limit selection method, either manually set with the @ref{XREFaxesylim, , @w{@qcode{"ylim"} property}} or automatically set to span the plotted data according to the @ref{XREFaxesylimitmethod, , @w{@qcode{"ylimitmethod"} property}}.


@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{XREFaxesytickmode}
@prindex axes ytickmode
@item @code{ytickmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Setting to determine whether the ytick locations and spacing are set automatically by Octave or manually using the @ref{XREFaxesytick, , @w{@qcode{"ytick"} property}}.


@anchor{XREFaxeszaxis}
@prindex axes zaxis
@item @code{zaxis} (read-only): def. @code{[](0x0)}
Axes Ruler objects is not yet implemented for axes objects.  @code{zaxis} is unused.


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


@anchor{XREFaxeszcolormode}
@prindex axes zcolormode
@item @code{zcolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the setting determining the color that is applied to the z-axis grid lines.  If set to @qcode{"auto"} and/or the @ref{XREFaxesgridcolormode, , @w{@qcode{"gridcolormode"} property}} is set to @qcode{"manual"}, the z-axis grid color will be defined by the @ref{XREFaxesgridcolor, , @w{@qcode{"gridcolor"} property}}.  Otherwise the z-axis grid color will be defined by the @ref{XREFaxeszcolor, , @w{@qcode{"zcolor"} property}}.


@anchor{XREFaxeszdir}
@prindex axes zdir
@item @code{zdir}: @{@qcode{"normal"}@} | @qcode{"reverse"}
Direction of the y-axis: @qcode{"normal"} is bottom to top in default 3-D views.


@anchor{XREFaxeszlim}
@prindex axes zlim
@item @code{zlim}: two-element vector, def. @code{[0   1]}
Two-element vector @code{[zmin zmax]} 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{XREFaxeszlimitmethod}
@prindex axes zlimitmethod
@item @code{zlimitmethod}: @qcode{"padded"} | @{@qcode{"tickaligned"}@} | @qcode{"tight"}
Method used to determine the z-axis limits when the @code{xlimmode} property is @qcode{"auto"}.  The default value, @qcode{"tickaligned"} makes limits align with the closest ticks.  With value @qcode{"tight"} the limits are adjusted to enclose all the graphics objects in the axes, while with value @qcode{"padded"}, an additional margin of about 7% of the data extent is added around the objects.  @xref{XREFaxis, , @w{axis function}}.


@anchor{XREFaxeszlimmode}
@prindex axes zlimmode
@item @code{zlimmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the z-axis limit selection method, either manually set with the @ref{XREFaxeszlim, , @w{@qcode{"zlim"} property}} or automatically set to span the plotted data according to the @ref{XREFaxeszlimitmethod, , @w{@qcode{"zlimitmethod"} property}}.


@anchor{XREFaxeszminortick}
@prindex axes zminortick
@item @code{zminortick}: @{@qcode{"off"}@} | @qcode{"on"}
Control whether minor z tick marks are displayed.


@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{XREFaxesztickmode}
@prindex axes ztickmode
@item @code{ztickmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Setting to determine whether the ztick locations and spacing are set automatically by Octave or manually using the @ref{XREFaxesztick, , @w{@qcode{"ztick"} property}}.

@end table

@anchor{XREFaxescategoryAxesGridAppearance}
@subsubheading Axes Grid Appearance

@table @asis

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


@anchor{XREFaxesgridalphamode}
@prindex axes gridalphamode
@item @code{gridalphamode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Transparency is not yet implemented for axes objects.  @code{gridalphamode} is unused.


@anchor{XREFaxesgridcolor}
@prindex axes gridcolor
@item @code{gridcolor}: @{colorspec@} | @qcode{"none"}, def. @code{[0.1500   0.1500   0.1500]}
Color of the major grid lines.  @xref{Colors, , colorspec}.  Setting @code{gridcolor} also forces the @code{gridcolormode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesgridcolormode}
@prindex axes gridcolormode
@item @code{gridcolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the gridcolor mode, either manually set by the @ref{XREFaxesgridcolor, , @w{@qcode{"gridcolor"} property}} or automatically set by Octave to the default value.


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


@anchor{XREFaxesinnerposition}
@prindex axes innerposition
@item @code{innerposition}: four-element vector, def. @code{[0.1300   0.1100   0.7750   0.8150]}
The @qcode{"innerposition"} property is the same as the @ref{XREFaxesposition, , @w{@qcode{"position"} property}}.


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


@anchor{XREFaxesminorgridalphamode}
@prindex axes minorgridalphamode
@item @code{minorgridalphamode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Transparency is not yet implemented for axes objects.  @code{minorgridalphamode} is unused.


@anchor{XREFaxesminorgridcolor}
@prindex axes minorgridcolor
@item @code{minorgridcolor}: @{colorspec@} | @qcode{"none"}, def. @code{[0.1000   0.1000   0.1000]}
Color of the minor grid lines.  @xref{Colors, , colorspec}.  Setting @code{minorgridcolor} also forces the @code{minorgridcolormode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesminorgridcolormode}
@prindex axes minorgridcolormode
@item @code{minorgridcolormode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the minorgridcolor mode, either manually set by the @ref{XREFaxesminorgridcolor, , @w{@qcode{"minorgridcolor"} property}} or automatically set by Octave to the default value.


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


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


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


@anchor{XREFaxesxscale}
@prindex axes xscale
@item @code{xscale}: @{@qcode{"linear"}@} | @qcode{"log"}
Set the x-axis to a linear or logarithmic scale.


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


@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"}
Control whether minor y tick marks are displayed.


@anchor{XREFaxesyscale}
@prindex axes yscale
@item @code{yscale}: @{@qcode{"linear"}@} | @qcode{"log"}
Set the y-axis to a linear or logarithmic scale.


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


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


@anchor{XREFaxeszscale}
@prindex axes zscale
@item @code{zscale}: @{@qcode{"linear"}@} | @qcode{"log"}
Set the z-axis to a linear or logarithmic scale.

@end table

@anchor{XREFaxescategoryCallbackExecution}
@subsubheading Callback Execution

@table @asis

@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{XREFaxesinteractions}
@prindex axes interactions
@item @code{interactions} (read-only): def. @code{[](0x0)}
Interaction objects is not yet implemented for axes objects.  @code{interactions} is unused.


@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}}.

@end table

@anchor{XREFaxescategoryCameraandViewControls}
@subsubheading Camera and View Controls

@table @asis

@anchor{XREFaxescameraposition}
@prindex axes cameraposition
@item @code{cameraposition}: three-element vector, def. @code{[0.5000   0.5000   9.1603]}
Coordinates of the camera position viewing the axes.  Setting @code{cameraposition} also forces the @code{camerapositionmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxescamerapositionmode}
@prindex axes camerapositionmode
@item @code{camerapositionmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the camera position property, whether automatically set according to the @ref{XREFview, , view function}, or manually set with the @ref{XREFaxescameraposition, , @w{@qcode{"cameraposition"} property}}.


@anchor{XREFaxescameratarget}
@prindex axes cameratarget
@item @code{cameratarget}: three-element vector, def. @code{[0.5000   0.5000   0.5000]}
Coordinates of the point at which the viewing camera is aimed.  Setting @code{cameratarget} also forces the @code{cameratargetmode} property to be set to @qcode{"manual"}.


@anchor{XREFaxescameratargetmode}
@prindex axes cameratargetmode
@item @code{cameratargetmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of camera target property, either manually set with the @ref{XREFaxescameratarget, , @w{@qcode{"cameratarget"} property}} or automatically positioned at the center of the axes plot area.


@anchor{XREFaxescameraupvector}
@prindex axes cameraupvector
@item @code{cameraupvector}: three-element vector, def. @code{[0   1   0]}
A 3-element vector defining the upward direction of the current view.  Note that the default is [0 1 0] for 2-D plots and [0 0 1] for 3-D plots.  Setting @code{cameraupvector} also forces the @code{cameraupvectormode} property to be set to @qcode{"manual"}.


@anchor{XREFaxescameraupvectormode}
@prindex axes cameraupvectormode
@item @code{cameraupvectormode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of camera up vector property, set to manual when the @ref{XREFaxescameraupvector, , @w{@qcode{"cameraupvector"} property}} is used to change the vector from the 2-D or 3-D default values.


@anchor{XREFaxescameraviewangle}
@prindex axes cameraviewangle
@item @code{cameraviewangle}: scalar, def. @code{6.6086}
The camera's field of view defined as an angle between 0 and 180 degrees.  Setting @code{cameraviewangle} also forces the @code{cameraviewanglemode} property to be set to @qcode{"manual"}.


@anchor{XREFaxescameraviewanglemode}
@prindex axes cameraviewanglemode
@item @code{cameraviewanglemode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the camera view angle property, either manually set with the @ref{XREFaxescameraviewangle, , @w{@qcode{"cameraviewangle"} property}} or automatically set by Octave to include all visible objects.


@anchor{XREFaxesprojection}
@prindex axes projection
@item @code{projection}: @{@qcode{"orthographic"}@} | @qcode{"perspective"}
Orthographic/perspective projection adjustment is not yet implemented for axes objects.  @code{projection} is unused.


@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.

@end table

@anchor{XREFaxescategoryColorandTransparency}
@subsubheading Color and Transparency

@table @asis

@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"}
Transparency is not yet implemented for axes objects.  @code{alimmode} is unused.


@anchor{XREFaxesalphamap}
@prindex axes alphamap
@item @code{alphamap}: def. @code{[](0x0)}
Transparency is not yet implemented for axes objects.  @code{alphamap} is unused.


@anchor{XREFaxesalphascale}
@prindex axes alphascale
@item @code{alphascale}: @{@qcode{"linear"}@} | @qcode{"log"}
Transparency is not yet implemented for axes objects.  @code{alphascale} is unused.


@anchor{XREFaxesambientlightcolor}
@prindex axes ambientlightcolor
@item @code{ambientlightcolor}: def. @code{[1   1   1]}
Uniform background axes lighting is not yet implemented for axes objects.  @code{ambientlightcolor} is unused.


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


@anchor{XREFaxesclimmode}
@prindex axes climmode
@item @code{climmode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the color limit mode, either manually set by the @ref{XREFaxesclim, , @w{@qcode{"clim"} property}} or automatically set by Octave to the minimum and maximum @code{cdata} values of axes's children.


@anchor{XREFaxescolormap}
@prindex axes colormap
@item @code{colormap}: N-by-3 matrix, def. 256-by-3 double
A matrix containing the RGB color map for this axes object.


@anchor{XREFaxescolorscale}
@prindex axes colorscale
@item @code{colorscale}: @{@qcode{"linear"}@} | @qcode{"log"}
Automatic linear/log color scaling is not yet implemented for axes objects.  @code{colorscale} is unused.

@end table

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

@table @asis

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

@end table

@anchor{XREFaxescategoryDisplay}
@subsubheading Display

@table @asis

@anchor{XREFaxesclipping}
@prindex axes clipping
@item @code{clipping}: @qcode{"off"} | @{@qcode{"on"}@}
Axes-children clipping control is not yet implemented for axes objects.  @code{clipping} is unused.


@anchor{XREFaxesclippingstyle}
@prindex axes clippingstyle
@item @code{clippingstyle}: @{@qcode{"3dbox"}@} | @qcode{"rectangle"}
Axes-children clipping control is not yet implemented for axes objects.  @code{clippingstyle} is unused.


@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.

@end table

@anchor{XREFaxescategoryMouseInteraction}
@subsubheading Mouse Interaction

@table @asis

@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{XREFaxescontextmenu}
@prindex axes contextmenu
@item @code{contextmenu}: graphics handle, def. @code{[](0x0)}
Graphics handle of the uicontextmenu object that is currently associated to this axes object.


@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{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{XREFaxesmousewheelzoom}
@prindex axes mousewheelzoom
@item @code{mousewheelzoom}: scalar in the range (0, 1), def. @code{0.5000}
Fraction of axes limits to zoom for each wheel movement.


@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{XREFaxesselected}
@prindex axes selected
@item @code{selected}: @{@qcode{"off"}@} | @qcode{"on"}
Property indicates whether this axes is selected.


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

@end table

@anchor{XREFaxescategoryObjectIdentification}
@subsubheading Object Identification

@table @asis

@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{XREFaxestag}
@prindex axes tag
@item @code{tag}: string, def. @qcode{""}
A user-defined string to label the graphics object.


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


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


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

@end table

@anchor{XREFaxescategoryObjectPosition}
@subsubheading Object Position

@table @asis

@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{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"}
Current state of the plot box aspect ratio mode, either manually set by the @ref{XREFaxesdataaspectratio, , @w{@qcode{"dataaspectratio"} property}} or automatically set by Octave in combination with other display properties to fit the data in the current view.


@anchor{XREFaxesposition}
@prindex axes position
@item @code{position}: four-element vector, def. @code{[0.1300   0.1100   0.7750   0.8150]}
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{XREFaxespositionconstraint}
@prindex axes positionconstraint
@item @code{positionconstraint}: @qcode{"innerposition"} | @{@qcode{"outerposition"}@}
Specify which of @qcode{"innerposition"} or @qcode{"outerposition"} properties takes precedence when axes annotations extent changes.  @xref{XREFaxesinnerposition, , @w{@qcode{"innerposition"} property}}, and @ref{XREFaxesouterposition, , @w{@qcode{"outerposition"} property}}.


@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.

@end table

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

@table @asis

@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{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 @qcode{"children"} property.


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


@anchor{XREFaxessortmethod}
@prindex axes sortmethod
@item @code{sortmethod}: @qcode{"childorder"} | @{@qcode{"depth"}@}
Child display order control is not yet implemented for axes objects.  @code{sortmethod} is unused.

@end table

@anchor{XREFaxescategoryTextAppearance}
@subsubheading Text Appearance

@table @asis

@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).

Programming Note: On systems that don’t use FontConfig natively (all but Linux), the font cache is built when Octave is installed.  You will need to run @code{system ("fc-cache -fv")} manually after installing new fonts.


@anchor{XREFaxesfontsize}
@prindex axes fontsize
@item @code{fontsize}: scalar, def. @code{10}
Size of the font used for text rendering.  @xref{XREFaxesfontunits, , fontunits property}.  Setting @code{fontsize} also forces the @code{fontsizemode} property to be set to @qcode{"manual"}.


@anchor{XREFaxesfontsizemode}
@prindex axes fontsizemode
@item @code{fontsizemode}: @{@qcode{"auto"}@} | @qcode{"manual"}
Current state of the fontsize mode, either manually set by the @ref{XREFaxesfontsize, , @w{@qcode{"fontsize"} property}} or automatically set by Octave to maintain readability.


@anchor{XREFaxesfontsmoothing}
@prindex axes fontsmoothing
@item @code{fontsmoothing}: @qcode{"off"} | @{@qcode{"on"}@}
Control whether any text associated with axes is anti-aliased.


@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{XREFaxeslabelfontsizemultiplier}
@prindex axes labelfontsizemultiplier
@item @code{labelfontsizemultiplier}: def. @code{1.1000}
Ratio between the x/y/zlabel fontsize and the tick label fontsize.


@anchor{XREFaxeslegend}
@prindex axes legend
@item @code{legend} (read-only): def. @code{[](0x0)}
Legend property control is not yet implemented for axes objects.  @code{legend} is unused.  Use the @ref{XREFlegend, , legend function} to set legend properties.


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


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


@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{XREFaxesxlabel}
@prindex axes xlabel
@item @code{xlabel}: graphics handle
Graphics handle of the x label text object.


@anchor{XREFaxesxticklabel}
@prindex axes xticklabel
@item @code{xticklabel}: string | cell array of strings, def. 6-by-1 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"}
Setting to determine whether the xtick labels are set automatically by Octave or manually using the @ref{XREFaxesxticklabel, , @w{@qcode{"xticklabel"} property}}.


@anchor{XREFaxesxticklabelrotation}
@prindex axes xticklabelrotation
@item @code{xticklabelrotation}: def. @code{0}
Axis label rotation is not yet implemented for axes objects.  @code{xticklabelrotation} is unused.


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


@anchor{XREFaxesyticklabel}
@prindex axes yticklabel
@item @code{yticklabel}: string | cell array of strings, def. 6-by-1 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"}
Setting to determine whether the ytick labels are set automatically by Octave or manually using the @ref{XREFaxesyticklabel, , @w{@qcode{"yticklabel"} property}}.


@anchor{XREFaxesyticklabelrotation}
@prindex axes yticklabelrotation
@item @code{yticklabelrotation}: def. @code{0}
Axis label rotation is not yet implemented for axes objects.  @code{yticklabelrotation} is unused.


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


@anchor{XREFaxeszticklabel}
@prindex axes zticklabel
@item @code{zticklabel}: string | cell array of strings, def. 6-by-1 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"}
Setting to determine whether the ztick labels are set automatically by Octave or manually using the @ref{XREFaxeszticklabel, , @w{@qcode{"zticklabel"} property}}.


@anchor{XREFaxeszticklabelrotation}
@prindex axes zticklabelrotation
@item @code{zticklabelrotation}: def. @code{0}
Axis label rotation is not yet implemented for axes objects.  @code{zticklabelrotation} is unused.

@end table