Hover tooltip works incorrectly in scatter WebGL
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Python
- Estrellas
- 18.8k
- Forks
- 2.8k
- Merge medio
- 16 h 26 min
- PR fusionados (30 d)
- 21
Descripción
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()
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Empieza ejecutando el ejemplo de Python proporcionado con go.Figure.add_scattergl y compara su comportamiento de hover con el de scatter normal. Sigue el manejo del hover de WebGL desde el punto de entrada de scattergl, usando como referencias el comportamiento esperado del tooltip basado en los límites y la comparación con render_mode='svg'. Se considera terminado cuando las burbujas grandes responden en toda su área visible y el tooltip apunta al límite.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- python
- Área
- data-visualization, frontend
- Tipo de issue
- Error
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 42/100