Re: [Matplotlib-users] Tick line linewidth and linestyle don't work

2010-04-05 Thread Jae-Joon Lee
On Sun, Apr 4, 2010 at 11:55 AM, Thomas Robitaille wrote: > It looks as though the set_linewidth and set_linestyle commands are silently > ignored. Is this normal? I have submitted a bug report here: linewidth and linestyle are (or looks) ignored because ticklines are actually "markers". To chan

[Matplotlib-users] Tick line linewidth and linestyle don't work

2010-04-04 Thread Thomas Robitaille
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('t