-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Implement hoveron: 'fills'
for scattergl and scatterpolargl
#2887
Comments
This is the |
@alexcjohnson is right |
Looking at this more closely, the real problem is with As listed in the old gl2d limitations ticket, So I guess this is another case of erroneously listed attributes. I'll make a PR 🔪 @jonmmease Ok if I change the issue title to Implement |
Sure! |
hoveron: 'fills'
for scattergl and scatterpolargl
... until we actually implement it in #2887
Hi. Will |
Hi, was this issue neglected/forgotten about? |
This item isn't on anyone's roadmap that I know of at the moment, but we'd welcome a pull request to address it! |
If you could point me towards where to look, I might do it. |
Here's plotly.js/src/traces/scatter/hover.js Lines 107 to 192 in 373d4ff
We'd need to implement similar logic in |
+1 for implementing |
During a discussion in the plotly.py forums in came up that the hoverlabel for the
scatterpolar
trace has a different behavior when thefill
state is set totoself
than when it's set tonone
.CodePen: https://codepen.io/anon/pen/EpOGdX
fill: 'none'
forscatterpolar
fill: 'toself'
forscatterpolar
It also seems that the
hoverinfo
propery has no effect whenfill
istoself
.I did the same comparison with the
scatterpolargl
trace and it has the behavior that I expected:fill: 'toself;
forscatterpolargl
I don't know if this is a bug in
scatterpolar
orscatterpolargl
, but I find the currentscatterpolargl
behavior (The behavior consistent withfill
ofnone
) to be more helpful.The text was updated successfully, but these errors were encountered: