|
From: <dd...@ja...> - 2006-06-23 13:01:06
|
On Friday 23 June 2006 8:12 pm, Johan Fredrik =D8hman wrote: > Hi, > > I made a plot where the values on the X-axis are dates, "JUN, JUL, > AUG.. etc ". To make them fit better, I have rotated the text using > setp(labels, rotation=3D45, size=3D8), the problem is that the text is > "clipped" in bottom. How can I expand the boundries? Thanks !! > Instead of this... > ax =3D subplot(111) Try this... fig =3D figure(num=3D1, figsize=3D(2,2)) ax =3D fig.add_axes([left, bottom, width, height])=20 Start with left=3D0.1, bottom=3D0.1, width=3D0.8, height=3D0.8 and see how= =20 that looks. Adjust the values of bottom and/or height until your=20 labels are no longer clipped.=20 |