Re: [Matplotlib-users] One more time: frame linewidth

2009-08-19 Thread Christopher Brown
Thank you, Jae-Joon. Again. :) On 8/18/2009 2:49 PM, Jae-Joon Lee wrote: I guess you're using 0.99? Use spines instead. for example, gca().spines[bottom].set_linewidth(2) # it only changes the linewidth of the bottom spine. also, see this example,

[Matplotlib-users] One more time: frame linewidth

2009-08-18 Thread Christopher Brown
I have asked this question before. How do I set the linewidth of the axis frame? Long ago, I used gca().get_frame().set_linewidth(2). More recently, I used gca().frame.set_linewidth(2), but this doesn't seem to work anymore. I've tried gca().patch, to no avail. Any suggestions? Thanks.

Re: [Matplotlib-users] One more time: frame linewidth

2009-08-18 Thread Jae-Joon Lee
I guess you're using 0.99? Use spines instead. for example, gca().spines[bottom].set_linewidth(2) # it only changes the linewidth of the bottom spine. also, see this example, http://matplotlib.sourceforge.net/examples/pylab_examples/spine_placement_demo.html#pylab-examples-spine-placement-demo