Results 637 comments of Antony Lee

Ah yes. This is more or less intentional: I *need* to keep the annotation within the figure (I can't draw outside of the figure and cropping the annotation would be...

Looking at the docs again, I think the behavior is alluded to in the Note under https://mplcursors.readthedocs.io/en/latest/#customization. It's not really explicit; OTOH I'm not sure I really want to emphasize...

Please provide a short, self-contained code snippet to reproduce the bug, ideally allowing a simple copy and paste to reproduce. Please do your best to reduce the code snippet to...

Ah, I see, thanks for the report. I can reproduce the problem, but AFAICT this needs to be solved on Matplotlib's side, specifically via something like https://github.com/matplotlib/matplotlib/issues/23155.

Unfortunately I do not think this is possible right now; if you check the matplotlib issue tracker iirc there are a few other open issues about the difficulty to retrieve...

The kwarg is called `pickables` now (as noted in https://mplcursors.readthedocs.io/en/stable/mplcursors.html#mplcursors.cursor). Also, passing a list of Axes should also work?

That's a great idea, now implemented on master. Please give it a try.

Please provide a full description of how to reproduce the issue.

I pushed another change that makes `cursor.enabled` also affect whether motion keys work (so now you can do `cursor.enabled = False` to make it unresponsive to motion keys). If you...

> However, I don't think I can use cursor.enabled, because that also disables new cursors from registering for a particular plot. So I've kept the binding workaround for now. I'll...