Re: [Matplotlib-users] plt.gca().get_frame().set_linewidth

2008-11-18 Thread Christopher Brown
Thank you Jae-Joon, JL> get_frame() is deprecated (it is supposed to show you a JL> DeprecationWarning). Axes class now has a "frame" property, so JL> gca().frame.set_linewidth(2) should work. JL> Currently get_frame() returns Axes.patch which is used to draw a JL> axes background. -- Christophe

Re: [Matplotlib-users] plt.gca().get_frame().set_linewidth

2008-11-18 Thread Jae-Joon Lee
get_frame() is deprecated (it is supposed to show you a DeprecationWarning). Axes class now has a "frame" property, so gca().frame.set_linewidth(2) should work. Currently get_frame() returns Axes.patch which is used to draw a axes background. -JJ On Tue, Nov 18, 2008 at 12:24 PM, Christopher

[Matplotlib-users] plt.gca().get_frame().set_linewidth

2008-11-18 Thread Christopher Brown
Hi Users, I use the following to adjust the line width of the ticks and bounding box: for tl in plt.gca().get_xticklines() + plt.gca().get_yticklines(): tl.set_markeredgewidth(2) plt.gca().get_frame().set_linewidth(2) I'm not sure when it happened, but sometime relatively recently the get_