On 8/21/07, Torsten Hahn <[EMAIL PROTECTED]> wrote:
> The problem is, that there only the major ticklines are returned by
> ax.get_xticklines(). How do i access (and modify) the minor ticklines?
In [80]: for tick in ax.xaxis.get_major_ticks():
print tick.tick1line, tick.tick2line
:
Li
Am 21.08.2007 um 10:30 schrieb Eric Firing:
> Torsten Hahn wrote:
>> Hello,
>> I am looking for an way to set the width of the tick lines in a
>> plot. I have not found any rc parameter for this.
>
> Good point; it does seem to be a gap in the configurability.
Would be nice to have sopmething
Torsten Hahn wrote:
> Hello,
>
> I am looking for an way to set the width of the tick lines in a plot.
> I have not found any rc parameter for this.
Good point; it does seem to be a gap in the configurability.
>
> Doing:
>
> plot(...)
> c=gca()
> tl=c.get_ticklines()
>
> gives a list of tic
Hello,
I am looking for an way to set the width of the tick lines in a plot.
I have not found any rc parameter for this.
Doing:
plot(...)
c=gca()
tl=c.get_ticklines()
gives a list of tickline objects. Every tickline object has a method
tl[0].set_linewidth(). Calling this method with differe