Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use matplotlib 0.99

so, I can`t change width of border of subplot.. how can I do it?

code like it:

fig = plt.figure(figsize = (4.1, 2.2))
ax = fig.add_subplot(111)
and then,
ax.patch.set _ linewidth(0.1) or
ax.get _ frame().set _ linewidth(0.1) doesn`t work!

but legend.get _ frame().set _ linewidth(0.1) works fine.

share|improve this question

1 Answer

You want to adjust the border line size? You need to use ax.spines[side].set_linewidth(size).

So something like:

[i.set_linewidth(0.1) for i in ax.spines.itervalues()]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.