Re: [Matplotlib-users] problem with annotate

2011-12-08 Thread Neal Becker
Yes, setting annotation_clip=False did fix it. I will try to send a minimal example. ATM, my example is not at all minimal, but I suspect that you can easily reproduce this with any plot where the x axis is set so that the rightmost point is on the edge of the graph, and annotation is set to

Re: [Matplotlib-users] problem with annotate

2011-12-07 Thread Jae-Joon Lee
Can you post an standalone example? Maybe you want to set the *annotation_clip* parameter to False? http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.annotate Regards, -JJ On Fri, Dec 2, 2011 at 10:19 PM, Neal Becker ndbeck...@gmail.com wrote: Using

[Matplotlib-users] problem with annotate

2011-12-02 Thread Neal Becker
Using horizontalalignment='right', it seems that if a point lies on the right edge of the plot, the annotation does not appear, even though (since the text should be right aligned), the text would have been on the plot and be visible. Any workaround?

[Matplotlib-users] problem with annotate

2010-06-04 Thread Matthias Michler
Hello list, I'm encountering a problem with annotate using the latest svn and GTKAgg- backend. I plot several annotate-arrows in my script, but some of them aren't saved to the eps/pdf - file. More precisely the lower left arrow in the attached example, who touches the lower (negative)

Re: [Matplotlib-users] problem with annotate

2010-06-04 Thread Jae-Joon Lee
By default, when the xy coordinate of the annotate is given in the data coordinate, it draws the arrow only if the xy point is inside the axes bbox. And, when the xy point is at the boundary of the axes bbox, the inside-test results seems to depend on the backend. So, some backends draws the arrow