|
From:
<fra...@un...> - 2006-10-05 08:08:49
|
Hi all,=0A= =0A= I have look in the doc and examples but was unable to find a way to control= =20=0A= the thickness of the major and minor tick on the axis.=0A= =0A= Forgive me for this very basic question but if you now a way to do that...= =0A= =0A= Thanks a lot=0A= Francois=0A= --=20=0A= Fran=E7ois BEAUBERT=0A= ENSIAME/LME=0A= Bureau A9=0A= Universit=E9 de Valenciennes - Le Mont Houy - 59313 Valenciennes Cedex 9=0A= T=E9l=E9phone: (0/33)3 27 51 19 72=0A= T=E9l=E9copie: (0/33)3 27 51 19 61=0A= Mel: fra...@un...=0A= =0A= --=20=0A= This message has been scanned for viruses and=0A= dangerous content by MailScanner, and is=0A= believed to be clean.=0A= =0A= |
|
From: David H. <dav...@gm...> - 2006-10-05 17:55:21
|
Fran=E7ois, These options can be found in the matplotlibrc configuration figure, or can be set at runtime using the rc command. David 2006/10/5, Fran=E7ois Beaubert <fra...@un...>: > > Hi all, > > I have look in the doc and examples but was unable to find a way to > control > the thickness of the major and minor tick on the axis. > > Forgive me for this very basic question but if you now a way to do that..= . > > Thanks a lot > Francois > -- > Fran=E7ois BEAUBERT > ENSIAME/LME > Bureau A9 > Universit=E9 de Valenciennes - Le Mont Houy - 59313 Valenciennes Cedex 9 > T=E9l=E9phone: (0/33)3 27 51 19 72 > T=E9l=E9copie: (0/33)3 27 51 19 61 > Mel: fra...@un... > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |
|
From: David H. <dav...@gm...> - 2006-10-05 17:56:33
|
configuration file... sorry 2006/10/5, Fran=E7ois Beaubert <fra...@un...>: > > Hi all, > > I have look in the doc and examples but was unable to find a way to > control > the thickness of the major and minor tick on the axis. > > Forgive me for this very basic question but if you now a way to do that..= . > > Thanks a lot > Francois > -- > Fran=E7ois BEAUBERT > ENSIAME/LME > Bureau A9 > Universit=E9 de Valenciennes - Le Mont Houy - 59313 Valenciennes Cedex 9 > T=E9l=E9phone: (0/33)3 27 51 19 72 > T=E9l=E9copie: (0/33)3 27 51 19 61 > Mel: fra...@un... > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |
|
From: Helge A. <he...@gm...> - 2006-10-06 17:56:28
|
> 2006/10/5, Fran=E7ois Beaubert < > fra...@un...>: > > Hi all, > > I have look in the doc and examples but was unable to find a way to con= trol > > the thickness of the major and minor tick on the axis. On 10/5/06, David Huard <dav...@gm...> wrote: > Fran=E7ois, > These options can be found in the matplotlibrc configuration figure, or c= an > be set at runtime using the rc command. > David hi, which option is that? I know the length can be set there, but the width? trying e.g. xtick.linewidth : 1.0 does not seem to work. Helge |
|
From: John H. <jdh...@ac...> - 2006-10-06 18:00:06
|
>>>>> "Helge" == Helge Avlesen <he...@gm...> writes:
Helge> hi, which option is that? I know the length can be set
Helge> there, but the width? trying e.g. xtick.linewidth : 1.0
Helge> does not seem to work.
These aren't covered by default params (well they use the same width
as lines.linewidth
You can customize them with
for line in ax.get_xticklines():
line.set_linewidth(2.0)
JDH
|
|
From:
<fra...@un...> - 2006-10-09 08:33:01
|
Le Vendredi 6 Octobre 2006 19:59, John Hunter a =E9crit=A0:=0A=
> for line in ax.get_xticklines():=0A=
> =A0 =A0 line.set_linewidth(2.0)=0A=
=0A=
Thanks !=0A=
I have try this as in examples/axes_props.py but it doesn't work for me=0A=
=0A=
from pylab import *=0A=
=0A=
t =3D arange(0.0, 2.0, 0.01)=0A=
s =3D sin(2*pi*t)=0A=
ax =3D subplot(111)=0A=
ax.plot(t, s)=0A=
ax.grid(True)=0A=
=0A=
ticklines =3D ax.get_xticklines()=0A=
ticklines.extend( ax.get_yticklines() )=0A=
=0A=
for line in ticklines:=0A=
line.set_linewidth(4)=0A=
=0A=
show()=0A=
=0A=
any ideas ? I use matplotlib-0.87.5 and Python 2.4.3=0A=
Is there a way to do this in matplotlibrc like for tick length ?=0A=
=0A=
=0A=
--=20=0A=
Fran=E7ois BEAUBERT=0A=
ENSIAME/LME=0A=
Bureau A9=0A=
Universit=E9 de Valenciennes - Le Mont Houy - 59313 Valenciennes Cedex 9=0A=
T=E9l=E9phone: (0/33)3 27 51 19 72=0A=
T=E9l=E9copie: (0/33)3 27 51 19 61=0A=
Mel: fra...@un...=0A=
=0A=
=0A=
--=20=0A=
This message has been scanned for viruses and=0A=
dangerous content by MailScanner, and is=0A=
believed to be clean.=0A=
=0A=
|
|
From: Zack <za...@gm...> - 2006-10-09 17:12:20
|
Bonjour François!
Take it easy.
rc("lines", markeredgewidth=4)
There is no reasons to put cycle inside you code.
Regards,
On Sunday 08 October 2006 12:08, François Beaubert wrote:
> Le Vendredi 6 Octobre 2006 19:59, John Hunter a écrit :
> > for line in ax.get_xticklines():
> > line.set_linewidth(2.0)
>
> Thanks !
> I have try this as in examples/axes_props.py but it doesn't work for me
>
> from pylab import *
>
> t = arange(0.0, 2.0, 0.01)
> s = sin(2*pi*t)
> ax = subplot(111)
> ax.plot(t, s)
> ax.grid(True)
>
> ticklines = ax.get_xticklines()
> ticklines.extend( ax.get_yticklines() )
>
> for line in ticklines:
> line.set_linewidth(4)
>
> show()
>
> any ideas ? I use matplotlib-0.87.5 and Python 2.4.3
> Is there a way to do this in matplotlibrc like for tick length ?
|
|
From:
<fra...@un...> - 2006-10-10 12:24:54
|
Le Lundi 9 Octobre 2006 19:11, Zack a =E9crit=A0:=0A=
> Bonjour Fran=E7ois!=0A=
>=0A=
> Take it easy.=0A=
>=0A=
> rc("lines", markeredgewidth=3D4)=0A=
>=0A=
> There is no reasons to put cycle inside you code.=0A=
>=0A=
> Regards,=0A=
=0A=
Thanks for the tips zack !=0A=
It works like a dream ...=0A=
=0A=
Is there a way to specify only major or minor ticks marks ?=0A=
=0A=
--=20=0A=
Fran=E7ois BEAUBERT=0A=
ENSIAME/LME=0A=
Bureau A9=0A=
Universit=E9 de Valenciennes - Le Mont Houy - 59313 Valenciennes Cedex 9=0A=
T=E9l=E9phone: (0/33)3 27 51 19 72=0A=
T=E9l=E9copie: (0/33)3 27 51 19 61=0A=
Mel: fra...@un...=0A=
=0A=
--=20=0A=
Ce message a =E9t=E9 v=E9rifi=E9 par MailScanner=0A=
pour des virus ou des polluriels et rien de=0A=
suspect n'a =E9t=E9 trouv=E9.=0A=
MailScanner remercie transtec pour son soutien.=0A=
=0A=
|