diff scripts/plot/__go_draw_axes__.m @ 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 369b16e7f04b
line wrap: on
line diff
--- a/scripts/plot/__go_draw_axes__.m	Thu Mar 06 03:58:35 2008 -0500
+++ b/scripts/plot/__go_draw_axes__.m	Thu Mar 06 13:28:02 2008 -0500
@@ -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"))