On 10/18/2010 09:42 AM, Gökhan Sever wrote:
> On Mon, Oct 18, 2010 at 12:46 PM, Ted Kord<teddy.k...@gmail.com>  wrote:
>> Hi
>>
>> How do I make the tick size bigger as in thicker/bolder?
>>
>> matplotlib.rc('ytick.major', size=5) makes it longer but 'not' thicker.
>>
>> Ted
>
> I[1]: plt.plot(range(100))
> O[1]: [<matplotlib.lines.Line2D object at 0xb84f8ec>]
>
> I[2]: xticks = getp(gca(), 'xticklines')
>
> I[3]: xgrids = getp(gca(), 'xgridlines')
>
> I[4]: setp(xgrids, linewidth=2)
> O[4]: [None, None, None, None, None, None]
>
> I[5]: setp(xticks, linewidth=5)
> O[55]: [None, None, None, None, None, None, None, None, None, None, None, 
> None]

setp(xticks, markeredgewidth=4)

Ticks are markers.

Eric


------------------------------------------------------------------------------
Download new Adobe(R) Flash(R) Builder(TM) 4
The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly 
Flex(R) Builder(TM)) enable the development of rich applications that run
across multiple browsers and platforms. Download your free trials today!
http://p.sf.net/sfu/adobe-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to