|
From: Fabrice S. <si...@lm...> - 2014-01-07 17:18:37
|
Le mardi 07 janvier 2014 à 17:57 +0100, V. Armando Sole a écrit : > > What about using axvline with the picker argument? > > see http://matplotlib.org/users/event_handling.html > > > > I think axvline is part of the pyplot interface that I am not using. > > However your link is going to help me a lot. I thought picking was > restricted to patches, and I had missed Line2D is an Artist too with the > same capabilities. axvline is a pyplot function, but it is also a method of the Axes class. So if you have an Axes in your Figure, everything is ok http://matplotlib.org/api/axes_api.html#matplotlib.axes.Axes.axvline regards |