-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
For better speed and to present more data I am converting code from scatter to scattergl but I am facing issue in the color scheme
px.scatter(df2, x="xaxis", y="yaxis", color="color", hover_data=["hover"])
changed to
summary_plot = go.Figure()
summary_plot.add_trace(go.Scattergl(x=df2['xaxis'], y=df2['yaxis'],mode='markers',hovertext=df2['hover'],
marker=dict(color=list(df2['color']),showscale=True,autocolorscale=False,cauto=False)))
chart created from px.scattergl
I want to have a scatter color scheme in a scatter function.
Am I missing any parameter in scattergl?
Please guide me
Metadata
Metadata
Assignees
Labels
No labels