Hover tooltip works incorrectly in scatter WebGL
Nessuno ha ancora preso questa issue.
- Lingua principale
- Python
- Stelle
- 18.8k
- Fork
- 2.8k
- Merge medio
- 16h 26m
- PR unite (30g)
- 21
Descrizione
In the code example below (using the scattergl) when the cursor is rolled over the bubble, the hover tooltip does not appear until the cursor is close to the center of the bubble. The tooltip itself also points to the center of the bubble.
This is different from the expected behavior observed with the regular scatter where the tooltip appears in relation to the boundary of the bubble, rather than its center. And the tooltip points to the boundary as well.
For the Plotly Express px.scatter, one needs to set render_mode='svg' to switch out of WebGL for the correct behaviour.
This results in an incorrect tooltip in WebGL appearing when the cursor is over the larger bubble in an example such as this one:

import pandas as pd
import plotly.graph_objects as go
df = pd.DataFrame({'x': [1], 'y': [1],'z': [100]})
fig = go.Figure()
fig.add_scattergl(
x=df['x'],
y=df['y'],
marker_size=df['z'],
mode='markers',
marker_sizeref=0.01,
marker_sizemode='area',
showlegend=True,
hovertemplate=(
'x: %{x:.2f}<br>'
'y: %{y:.2f}<br>'
'<extra></extra>'
),
)
fig.show()
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia eseguendo l'esempio Python fornito con go.Figure.add_scattergl e confronta il suo comportamento di hover con quello di scatter normale. Traccia la gestione dell'hover WebGL dal punto di ingresso di scattergl, usando come riferimenti il comportamento previsto del tooltip basato sui limiti e il confronto con render_mode='svg'. Il lavoro è completato quando le bolle grandi rispondono su tutta la loro area visibile e il tooltip punta al limite.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- python
- Ambito
- data-visualization, frontend
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 42/100