Mercurial > hg > octave-lyh
changeset 7565:1e6443ff960f
handle axes linewidth property
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 06 Mar 2008 13:28:02 -0500 |
parents | 90536e155fde |
children | b3acdf1c41a5 |
files | scripts/ChangeLog scripts/plot/__go_draw_axes__.m |
diffstat | 2 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,5 +1,7 @@ 2008-03-06 John W. Eaton <jwe@octave.org> + * plot/ChangeLog: Handle axes linewidth property. + * plot/__go_draw_axes__.m: Adjust markersize by a factor of 1/6. * general/interpn.m: New test.
--- a/scripts/plot/__go_draw_axes__.m +++ b/scripts/plot/__go_draw_axes__.m @@ -1084,6 +1084,8 @@ if (strcmpi (axis_obj.visible, "off")) fputs (plot_stream, "unset border; unset tics\n"); + else + fprintf (plot_stream, "set border lw %f;\n", axis_obj.linewidth); endif if (strcmpi (axis_obj.key, "on"))