diff scripts/plot/scatter3.m @ 17531:bed7ec6f9855

scatter3.m: Turn off axis box for Matlab compatibility. * scripts/plot/scatter3.m: Turn off axis box for Matlab compatibility.
author Rik <rik@octave.org>
date Tue, 01 Oct 2013 15:51:28 -0700
parents 5e552cd9315a
children
line wrap: on
line diff
--- a/scripts/plot/scatter3.m
+++ b/scripts/plot/scatter3.m
@@ -83,7 +83,7 @@
     htmp = __scatter__ (hax, 3, "scatter3", varargin{:});
 
     if (! ishold (hax))
-      set (hax, "view", [-37.5, 30],
+      set (hax, "view", [-37.5, 30], "box", "off",
                 "xgrid", "on", "ygrid", "on", "zgrid", "on");
     endif
   unwind_protect_cleanup