plotly / plotly/plotly.js

Isosurface and other 3D types prevent Scatterplot hover

Offen
#6,669 0 Kommentare 1 Reaktion 0 zugewiesene Personen Auf GitHub ansehen

Dieses Issue hat noch niemand übernommen.

bug P3
Vorherrschende Sprache
JavaScript
Sterne
18.3k
Forks
2k
Ø Merge
2 T. 12 Std.
Gemergte PRs (30 T.)
28

Beschreibung

As this is ultimately a plotly.js issue, I'm referencing the following issue from plotly.py
Isosurface and other 3D types prevent Scatterplot hover

When plotting an Isosurface, Mesh3D etc, and also a Scatter3D trace,
the Isosurface object seems to prevent the hover functionality of the Scatter-Plot when trying to hover over a Scatter3D marker,
even though the Isosurface's hoverinfo parameter has been set to "skip".

reproducible example (written in Python, but illustrates the issue and produces the HTML and JS):

from pandas import DataFrame as DF
import plotly.graph_objects as go

df = DF([(20,10,400)])
plot = go.Figure()
plot.add_trace(go.Isosurface(
                    x=[5,5,5,5,50,50,50,50],
                    y=[25,0,25,0,25,0,25,0],
                    z=[500,500,0,0,500,500,0,0],
                    value=[1,2,3,4,5,6,7,8],

                    hoverinfo='skip',
                    opacity=0.05,
                    colorscale=[[0,'yellow'],[1,'yellow']],
                    showscale=False
                )
)

plot.add_trace(go.Scatter3d(
    x=df[0], y=df[1], z=df[2],
    mode='markers', marker={'color': 'midnightblue', 'size': 5}, opacity=1,
    name='scatterplot'
    )
)

plot.show()

Beitragsleitfaden

Beitragsleitfaden öffnen

Erste Schritte

  1. Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
  2. Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
  3. Forke das Repository und arbeite in einem Branch.
  4. Öffne einen Pull Request, der die Issue-Nummer nennt.

Rechercherichtung

Beginnen Sie mit dem reproduzierbaren Beispiel im Issue und vergleichen Sie Isosurface oder Mesh3D mit einem Scatter3D-Trace, dessen hoverinfo auf "skip" gesetzt ist. Das Issue ist abgeschlossen, wenn das Hovering über dem Scatter3D-Marker trotz des darüberliegenden 3D-Traces funktioniert.

Vom Indexierungsmodell aus dem Issue-Text verfasst.

Bewertung

Tech-Stack
javascript
Bereich
data-visualization
Issue-Typ
Bug
Schwierigkeit
4/5
Geschätzter Aufwand
3-5 Tage
Aktivitätsstatus
Veraltet
Klarheit
Muss geklärt werden
Anfängerfreundlichkeit
25/100

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.