From: John H. <jdh...@ac...> - 2004-10-31 17:05:34
|
>>>>> "Jochen" == Jochen Voss <vo...@se...> writes: Jochen> Hello, I found what I believe is bug in matplotlib. The Jochen> program Jochen> displays a graph, where the xlabel is shifted to much Jochen> down. Only the upper half of the xlabel is still visible, Jochen> the lower half is outside the visible area. Jochen> Is this a bug? Or do I need to somehow manually reserve Jochen> space for the display of the xlabel? See http://matplotlib.sf.net/faq.html#TEXTOVERLAP Basically the subplots are fixed sizes - they don't automatically adjust in response to the items placed on or around them. One could write a layout engine to do this, but there isn't one current. You have to adjust parameters as described in the link above. JDH |