-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Add hoverinfo skip #851
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
Add hoverinfo skip #851
Conversation
@etpinard I'm working on testing gl2d and gl3d plots |
@etpinard I was able to add some support for gl2d and gl3d. There are a few limitations that I'm aware of: because gl2d and gl3d use the gl-plot2d and gl-plot3d packages for picking, traces with |
Spikes in gl3d plots are controlled via the Regarding gl3d and gl2d, I was most concerned about making sure that Great. So looks like you got everything right. Thanks for adding those tests! The only thing missing is adding information about I'll take this PR for a final spin on Monday, before merging. Thanks again for you efforts. |
@etpinard Thanks for taking a look, I've added some information to the description about the behavior of |
description: [ | ||
'Determines which trace information appear on hover.', | ||
'If `none` or `skip` are set, no information is displayed upon hovering.', | ||
'But, if `none` is set, click and hover events are still fired.' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great. Thanks!
Great PR. @john-soklaski thanks very much for your efforts 🎉 |
Add a new hoverinfo flag 'skip'. This prevents a trace from being considered for hovering or clicking. Addresses #678.