# HG changeset patch # User John W. Eaton # Date 1204888467 18000 # Node ID 369b16e7f04b8b69b9193fbedce1d2516f1c7ba8 # Parent f3b1f26dc44ec50f868f4ac7666554b8f6121fd1 handle tickdir property diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2008-03-07 John W. Eaton + + * plot/__go_draw_axes__.m: Handle tickdir property. + 2008-03-06 John W. Eaton * plot/hist.m: Avoid temporaries. diff --git a/scripts/plot/__go_draw_axes__.m b/scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m +++ b/scripts/plot/__go_draw_axes__.m @@ -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"))