# HG changeset patch # User jwe # Date 1193248265 0 # Node ID 033918b854a750929b969b5bacc002bcebfa7730 # Parent 8d57f66e35b8ebc31f0c26a21ac8ff0324083194 [project @ 2007-10-24 17:51:05 by jwe] diff -r 8d57f66e35b8 -r 033918b854a7 scripts/ChangeLog --- a/scripts/ChangeLog Wed Oct 24 17:16:23 2007 +0000 +++ b/scripts/ChangeLog Wed Oct 24 17:51:05 2007 +0000 @@ -1,3 +1,7 @@ +2007-10-24 John W. Eaton + + * plot/__go_draw_axes__.m: Handle visible = "off" for axes objects. + 2007-10-23 Peter A. Gustafson * plot/legend.m: Also extract location string from varargin (lost diff -r 8d57f66e35b8 -r 033918b854a7 scripts/plot/__go_draw_axes__.m --- a/scripts/plot/__go_draw_axes__.m Wed Oct 24 17:16:23 2007 +0000 +++ b/scripts/plot/__go_draw_axes__.m Wed Oct 24 17:51:05 2007 +0000 @@ -788,6 +788,10 @@ endif endif + if (strcmpi (axis_obj.visible, "off")) + fputs (plot_stream, "unset border; unset tics\n"); + endif + if (strcmpi (axis_obj.key, "on")) if (strcmpi (axis_obj.keybox, "on")) box = "box";