Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scatter_plot.enable_move = True fails #1520

Open
pnsvk opened this issue Aug 25, 2022 · 1 comment
Open

scatter_plot.enable_move = True fails #1520

pnsvk opened this issue Aug 25, 2022 · 1 comment
Labels

Comments

@pnsvk
Copy link

pnsvk commented Aug 25, 2022

the below snippet from the "Introduction.ipynb" (examples directory) does not let the mouse-move the scatter-elements.. It only enlarges the element when clicked.

Versions tested: 0.12.33 and 0.12.34
It went well with: 0.12.20

from bqplot import pyplot as plt
import numpy as np

size = 100
np.random.seed(0)
x_data = np.arange(size)
y_data = np.cumsum(np.random.randn(size) * 100.0)

plt.figure(title='scatter plot')
scatter_plot = plt.scatter(x_data, y_data)
plt.show()

scatter_plot.enable_move = True

Also, can you please let me know when is "1.0" planned for ?
I keep seeing some inconsistencies with every release, although the package as a whole is simply awesome ?

@ChakriCherukuri
Copy link
Member

@pnsvk I tested on 0.12.33 and it works for me. You need to click and drag the point to see it move

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants