Hi,

First of all, thanks to the developers for such a great Python plotting 
package. I use matplotlib more and more for my work.

There is one thing, which I cannot get to work, namely to change the 
linewidth of the tick lines.

I have tried

ticklines = ax.get_xticklines()
ticklines.extend(ax.get_yticklines())

for line in ticklines:
    line.set_linewidth(10)

but nothing changes. I can change the color and other properties, but no 
matter what I set for the linewidth, it does not change. I have also tried 
to go in and

ticklines[0]._linewidth = 10

but again no change. If I do a similar thing for the color
ticklines[0]._color = 'b'

the color is changed.

I use matplotlib 0.91 on a RedHat EL 4 machine.

Any ideas on how to solve this would be much appreciated. I have searched 
the mailing lists and the site, but could not find a solution (apologies 
if I should have missed it)

Best regards,
Berit
Berit Hinnemann
Research Scientist | Characterization Department | Research & Development 
Haldor Topsøe A/S
Nymøllevej 55
DK-2800 Kgs. Lyngby
Phone: +45 4527 2130 (direct)
Haldor Topsøe is market leading within heterogeneous catalysis and 
supplies catalysts and process design for oil refineries, chemical plants 
and the energy sector. The environment plays an important role in Topsøe's 
research and production, and through the introduction of new catalysts and 
technologies the company supports a more sustainable use of the world's 
resources. Annual revenues total DKK 3.5 billion generated by our 1,700 
dedicated employees. For additional information please see our web site 
www.topsoe.com


This e-mail message (including attachments, if any) is confidential and 
may be privileged. It is intended only for the addressee.
Any unauthorised distribution or disclosure is prohibited. Disclosure to 
anyone other than the intended recipient does not constitute waiver of 
privilege.
If you have received this e-mail in error, please notify the sender by 
e-mail and delete it and any attachments from your computer system and 
records.
HALDOR TOPSOE (www.topsoe.com)
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to