On Wed, Jan 20, 2010 at 3:07 PM, Kurt Forrester <kurtforres...@hotmail.com> wrote: > the output from the script is: > > annotation_clip = None > checking is point is inside the axes : [ 30.875 233. ] > contains_point = 0 > _check_xy returning False > exit without drawing due to annotation_clip > >
Weird. How about this one? fig = figure() ax=subplot(111) txt = ax.annotate("Test", (-0.1, 0.5), annotation_clip=False) print txt.get_annotation_clip() If it still print out None, see if the next code make any difference. fig = figure() ax=subplot(111) txt = ax.annotate("Test", (-0.1, 0.5)) txt.set_annotation_clip(False) print txt.get_annotation_clip() -JJ ------------------------------------------------------------------------------ Throughout its 18-year history, RSA Conference consistently attracts the world's best and brightest in the field, creating opportunities for Conference attendees to learn about information security's most important issues through interactions with peers, luminaries and emerging and established companies. http://p.sf.net/sfu/rsaconf-dev2dev _______________________________________________ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users