Just a follow-up on this problem...
I've found now that the index is only off if the plot is zoomed, and in the
following way. When I zoom, the first point that is visible in the plot
window will have index = 0, the next point will have index = 1, and so
forth. If I zoom another section of the p
I have Matplotlib 1.1.0, and am doing point picking (using the OO approach
to Matplotlib, and embedded in wxPython). My relevant code is as follows:
#connect the pick event to the pick event handler:
self.cid = self.canvas.mpl_connect('pick_event', self.on_pick)
#This is the relevant part of the