[Matplotlib-users] Annotation on an axis

2009-07-17 Thread Christophe Dupre
Hello, I am trying to add some annotations onto an axis as shown in the attached picture. Is that do-able? If yes, any pointers on how to achieve this are welcome. Thanks, Christophe attachment: AxisAnnotation.jpg--

Re: [Matplotlib-users] Annotation on an axis

2009-07-17 Thread Jae-Joon Lee
Drawing box around a text is quite easy. http://matplotlib.sourceforge.net/examples/pylab_examples/fancytextbox_demo.html To place a text in a way like ticklabels, you need to use blended transform. The short example may give you some starting point. -JJ from matplotlib.transforms import

Re: [Matplotlib-users] Annotation on an axis

2009-07-17 Thread Christophe Dupre
That's great, thanks. -Original Message- From: Jae-Joon Lee [mailto:lee.j.j...@gmail.com] Sent: Fri 17/07/2009 15:33 To: Christophe Dupre Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] Annotation on an axis Drawing box around a text is quite easy. http