changeset 28239:d37b1dd3acc8

maint: merge stable to default.
author Rik <rik@octave.org>
date Fri, 24 Apr 2020 13:05:06 -0700
parents ac3a078e688f (current diff) 50d83252f867 (diff)
children 2fb684dc2ec2
files
diffstat 2 files changed, 14 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/appearance/axis.m	Wed Apr 22 17:04:55 2020 -0700
+++ b/scripts/plot/appearance/axis.m	Fri Apr 24 13:05:06 2020 -0700
@@ -39,9 +39,9 @@
 ## first and second elements specify the lower and upper limits for the
 ## x-axis.  The third and fourth specify the limits for the y-axis, the fifth
 ## and sixth specify the limits for the z-axis, and the seventh and eighth
-## specify the limits for the color axis.  The special values -Inf and Inf may
-## be used to indicate that the limit should be automatically computed based
-## on the data in the axes.
+## specify the limits for the color axis.  The special values @code{-Inf} and
+## @code{Inf} may be used to indicate that the limit should be automatically
+## computed based on the data in the axes.
 ##
 ## Without any arguments, @code{axis} turns autoscaling on.
 ##
@@ -70,8 +70,9 @@
 ## @table @asis
 ## @item  @qcode{"auto"}
 ## @itemx @qcode{"auto[xyz]"}
-## Set the specified axes to have nice limits around the data or all if no
-## axes are specified.
+## @itemx @qcode{"auto [xyz]"}
+## Set nice auto-computed limits around the data for all axes, or only
+## the specified axes.
 ##
 ## @item @qcode{"manual"}
 ## Fix the current axes limits.
@@ -90,11 +91,15 @@
 ## The following options affect the appearance of tick marks.
 ##
 ## @table @asis
-## @item @qcode{"tic[xyz]"}
+## @item  @qcode{"tic"}
+## @itemx @qcode{"tic[xyz]"}
+## @itemx @qcode{"tic [xyz]"}
 ## Turn tick marks on for all axes, or turn them on for the specified axes and
 ## off for the remainder.
 ##
-## @item @qcode{"label[xyz]"}
+## @item  @qcode{"label"}
+## @itemx @qcode{"label[xyz]"}
+## @itemx @qcode{"label [xyz]"}
 ## Turn tick labels on for all axes, or turn them on for the specified axes
 ## and off for the remainder.
 ##
--- a/scripts/plot/appearance/legend.m	Wed Apr 22 17:04:55 2020 -0700
+++ b/scripts/plot/appearance/legend.m	Fri Apr 24 13:05:06 2020 -0700
@@ -1063,8 +1063,8 @@
 
 function update_marker_cb (h)
 
-  if (get (h, "markersize") > 3)
-    set (h, "markersize", 3);
+  if (get (h, "markersize") > 8)
+    set (h, "markersize", 8);
   endif
 
 endfunction