Re: [Matplotlib-users] positions of the ticks and ticklabels

2009-12-08 Thread Abhimanyu Lad
On Tue, Dec 8, 2009 at 3:27 AM, Matthias Michler wrote: > > I added an example program which illustrates my idea using transformation > of > axes-coord. to screen-coord. and from screen-coord. to fig-coord. > > point_screen = ax.transAxes.transform_point(point_ax) > point_fig = fig.transFigure.i

Re: [Matplotlib-users] positions of the ticks and ticklabels

2009-12-08 Thread Matthias Michler
Hi Abhi, I added an example program which illustrates my idea using transformation of axes-coord. to screen-coord. and from screen-coord. to fig-coord. point_screen = ax.transAxes.transform_point(point_ax) point_fig = fig.transFigure.inverted().transform_point(point_screen) I don't know if

[Matplotlib-users] positions of the ticks and ticklabels

2009-12-07 Thread Abhimanyu Lad
Hi, How do I get the coordinates of the ticks and their labels in a coordinate system that I can feed to figtext or text? I want to display some additional text near one of the ticklabels on the x axis. Although I could get the coordinates for figtext using trial and error, but is there a correct