|
From: John H. <jdh...@ac...> - 2005-05-16 17:26:53
|
>>>>> "Florian" =3D=3D Florian Lindner <mai...@xg...> writes:
Florian> Is it possible to change the angle of ticks? Right now
Florian> they are overwriting each other. When I could change the
Florian> angle to 45=B0 for example there would be enough space.
labels =3D ax.set_xticklabels(...)
for label in labels:
label.set_rotation(45)
JDH
|