We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
event
There might be something wrong with the logic in the event method of DynamicMap.
https://github.com/pyviz/holoviews/blob/52548a6732881ed5c2cad1ad5b3ea2a163e092a3/holoviews/core/spaces.py#L1031
In the tutorial, http://holoviews.org/user_guide/Responding_to_Events.html, I could not get this to work for hv.version '1.12.0'
for i in range(40): dmap.event()
However, the periodic example did work
dmap.periodic(0.1, 1000, timeout=3)
I had a snoop around the code and, when I tried the loop like this it worked
for i in range(40): #dmap.event hv.streams.Stream.trigger(dmap.streams) # I got this line from periodic call.
The text was updated successfully, but these errors were encountered:
This is probably a duplicate of
#3564
Will copy over.
Sorry, something went wrong.
Duplicate
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
There might be something wrong with the logic in the
event
method of DynamicMap.https://github.com/pyviz/holoviews/blob/52548a6732881ed5c2cad1ad5b3ea2a163e092a3/holoviews/core/spaces.py#L1031
In the tutorial, http://holoviews.org/user_guide/Responding_to_Events.html, I could not get this to work for hv.version '1.12.0'
However, the periodic example did work
dmap.periodic(0.1, 1000, timeout=3)
I had a snoop around the code and, when I tried the loop like this it worked
The text was updated successfully, but these errors were encountered: