changeset 11429:4286b8b999ab

scatter3.m: Grid on by default for 3D plots.
author Ben Abbott <bpabbott@mac.com>
date Fri, 31 Dec 2010 08:06:51 -0500
parents 13f128bd6a6f
children 6374938b3b36
files scripts/ChangeLog scripts/plot/scatter3.m
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Fri Dec 31 14:00:12 2010 +0100
+++ b/scripts/ChangeLog	Fri Dec 31 08:06:51 2010 -0500
@@ -4,6 +4,10 @@
 	* general/module.mk: Add new file to list.
 	* miscellaneous/unimplemented.m: Remove curl and divergence from list.
 
+2010-12-31  Ben Abbott  <bpabbott@mac.com>
+
+	* plot/scatter3.m: Grid on by default for 3D plots.
+
 2010-12-30  Ben Abbott  <bpabbott@mac.com>
 
 	* plot/contour3.m, plot/mesh.m, plot/meshc.m, plot/surfc.m: Grid on
--- a/scripts/plot/scatter3.m	Fri Dec 31 14:00:12 2010 +0100
+++ b/scripts/plot/scatter3.m	Fri Dec 31 08:06:51 2010 -0500
@@ -71,7 +71,8 @@
   endif
 
   if (! ishold ())
-    set (get (tmp, "parent"), "view", [-37.5, 30]);
+    set (ax, "view", [-37.5, 30],
+         "xgrid", "on", "ygrid", "on", "zgrid", "on");
   endif
 
   if (nargout > 0)