Re: [Matplotlib-users] axis coords in y direction and data coords in x direction for text

2010-11-15 Thread Jae-Joon Lee
You may use annotate. annotate("Test", xy=(0.5, 0.3), xycoords=("axes fraction", "data"), ha="center") This requires v1.0 of matplotlib. http://matplotlib.sourceforge.net/users/annotations_guide.html#using-complex-coordinate-with-annotation Regards, -JJ ---

Re: [Matplotlib-users] axis coords in y direction and data coords in x direction for text

2010-11-15 Thread Benjamin Root
On Mon, Nov 15, 2010 at 1:40 PM, wrote: > Hi > > > > I’d like to place a piece of text that shows the start of some data so I > want data coords in the x direction and axis coords in the y – e.g. float > with a particular x value and center in the screen on the y. > > > > Do I need to implement

[Matplotlib-users] axis coords in y direction and data coords in x direction for text

2010-11-15 Thread david.briant
Hi I'd like to place a piece of text that shows the start of some data so I want data coords in the x direction and axis coords in the y - e.g. float with a particular x value and center in the screen on the y. Do I need to implement a new object or can I mix transforms in this manner?