|
From: John H. <jdh...@ac...> - 2004-05-26 15:39:42
|
>>>>> "matthew" == matthew arnison <ma...@ca...> writes:
matthew> The call to tick_right() seems to produce different
matthew> behaviour in 0.54. Instead of moving the tick labels to
matthew> the right of the plot, it instead now moves the labels to
matthew> just inside the left side of the plot. This it to the
matthew> right of where they were, but not nearly as useful as the
matthew> original behaviour. :)
matthew> See the attached screenshot generated from two_scales.py
Hi Matthew, these are my favorite bug fixes - just a single character
change! In matplotlib.axis.YAxis._get_text2 (on or around line 311),
change
t = Text(x=0, y=loc,
to
t = Text(x=1, y=loc,
Should cure what ails you.
matthew> Otherwise, congratulations on another excellent
matthew> matplotlib release!
Thanks! Not without a few roadbumps along the way....
JDH
|