mpldatacursor icon indicating copy to clipboard operation
mpldatacursor copied to clipboard

Interactive "data cursors" (a.k.a. annotation pop-ups) for matplotlib

Results 41 mpldatacursor issues
Sort by recently updated
recently updated
newest added

The data cursor seems to function correctly when used with a surface plot, but the first click to place the cursor results in the warning > /usr/lib/python3/dist-packages/matplotlib/collections.py:360: UserWarning: Collection picker...

Hello @joferkington I'm thinking if is possible mixes or embedded this class or its configurations on your library *mpldatacursor* because the code below works perfectly with `%matplotlib notebook`, unlike *mpldatacursor*...

Hi Joe, thanks for this library, it looks exactly like the thing I was looking for. Unfortunately I can't get it to work in my Gtk3 app. Initially it would...

Hi, I want to have a free defineable function called when the annotation box is shown and hidden, called with appropiate x and y values. Is this possible? Best regards...

Hey, I think a nice feature would be to be able to drag the cursor along a trace. So that when you click and hold, the cursor follows the trace...

When i run the following ``` python import matplotlib.pyplot as plt import numpy as np from mpldatacursor import datacursor data = np.random.randn(50,50) data[20:30] = None plt.imshow(data) datacursor() plt.show() ``` and...

It does not keep the annotation within the figure (tested on 1.5.1 and 2.0b1). On a related note, I noticed that deletion click events on annotations that are outside of...

Dear Joe, First of all, thank you so much for the last feedback about `mpldatacursor` on `Jupyter` notebook! This time I am trying a bit different thing, which is using...

Hi, First off, thanks a bunch for creating this. :) I have one question regarding the use of the data cursor: Say, I have a 10x10x10 data array which I...