changeset 7569:369b16e7f04b

handle tickdir property
author John W. Eaton <jwe@octave.org>
date Fri, 07 Mar 2008 06:14:27 -0500
parents f3b1f26dc44e
children 8bf1bcb0ad8f
files scripts/ChangeLog scripts/plot/__go_draw_axes__.m
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Thu Mar 06 14:27:39 2008 -0500
+++ b/scripts/ChangeLog	Fri Mar 07 06:14:27 2008 -0500
@@ -1,3 +1,7 @@
+2008-03-07  John W. Eaton  <jwe@octave.org>
+
+	* plot/__go_draw_axes__.m: Handle tickdir property.
+
 2008-03-06  John W. Eaton  <jwe@octave.org>
 
 	* plot/hist.m: Avoid temporaries.
--- a/scripts/plot/__go_draw_axes__.m	Thu Mar 06 14:27:39 2008 -0500
+++ b/scripts/plot/__go_draw_axes__.m	Fri Mar 07 06:14:27 2008 -0500
@@ -1086,6 +1086,7 @@
       fputs (plot_stream, "unset border; unset tics\n");
     else
       fprintf (plot_stream, "set border lw %f;\n", axis_obj.linewidth);
+      fprintf (plot_stream, "set tics %s\n", axis_obj.tickdir);
     endif
 
     if (strcmpi (axis_obj.key, "on"))