Hi,

In the following script:

---

import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as mpl

fig = mpl.figure()

ax = fig.add_subplot(1,1,1)

for line in ax.xaxis.get_ticklines():
    line.set_markersize(20)
    line.set_linewidth(10)
    line.set_linestyle('dashed')

fig.savefig('test.png')

---

It looks as though the set_linewidth and set_linestyle commands are silently 
ignored. Is this normal? I have submitted a bug report here:

https://sourceforge.net/tracker/?func=detail&aid=2981829&group_id=80706&atid=560720

Thanks,

Thomas
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to