Closed
Description
Hello,
Spike lines and compare data on hover is missing by default in the modebar/toolbar for Plotly 5.0.0.
Originally this was a bug report, but it turned out it is feature (as you can read here) 😄
import plotly.graph_objects as go
x = [0, 1, 2]
y = [0, 1, 4]
fig = go.Figure(go.Scatter(x=x, y=y))
fig
After an overly long search I found the solution:
fig.update_layout(modebar_add=[
"v1hovermode",
"toggleSpikelines",
])
So I would like to suggest to also mention toggleSpikelines
in the release notes, because it took me an unnecessary long amount of time find the keyword for it. Here is also a full list of all possible mode bar buttons. A little misplaced if you ask me. In my opinion it should be placed more centrally describing the modebar. Also the documentation mentions many times examples for different mode buttons. I'd suggest to always link them to the complete list to remove duplication.
Metadata
Metadata
Assignees
Labels
Type
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
nicolaskruchten commentedon Jun 23, 2021
Thanks for the feedback! I've updated the changelog and release notes.
JulianWgs commentedon Jun 24, 2021
Thank you for the fast response! Feel free to close the issue (if you dont wanna tackle the documentation suggestions, just yet 😄 )
chicolucio commentedon Sep 16, 2021
Is this list of buttons correct? There is no
v1hovermode
in the list. I found out how to add this button reading this issue. There is a reference tov1hovermode
here in this link about layout but maybe it would be nice to have some link to it in the configuration options page since it was removed in a recent release as @JulianWgs linked above.gvwilson commentedon Jun 25, 2024
Hi - we are trying to tidy up the stale issues and PRs in Plotly's public repositories so that we can focus on things that are still important to our community. Since this one has been sitting for several years, I'm going to close it; if it is still a concern, please add a comment letting us know what recent version of our software you've checked it with so that I can reopen it and add it to our backlog. Thanks for your help - @gvwilson
Add v1hovermode to tje list of all the modebar options
Add v1hovermode to the list of all the modebar options
JulianWgs commentedon Jun 26, 2024
v1hovermode was still missing from that list, but it is an easy fix, so I created a PR.
gvwilson commentedon Jun 26, 2024
see #4647
1 remaining item