My plotly version is 5.13.1 and it runs in jupyterlab â4.0.1â in windows 10.
not sure, But I think it is kind of bug.
go.Scatter has marker option and this option has symbol types, such as
âcircleâ, âcircle-openâ, âcircle-dotâ, âcircle-open-dotâ, âsquareâ, âsquare-openâ, âŚ
and almost every all others are no problem to show scatters. but some options, such as ây-upâ, ây-downâ shows nothing.
Iâll give you example code.
import plotly.graph_objects as go
fig = go.Figure()
symbol = "circle"
new_scatter = go.Scatter(x=[1,2,3], y=[1,2,3], mode="markers", marker=dict(symbol=symbol) )
fig.add_trace(new_scatter) # no-problem
symbol = "y-up"
new_scatter = go.Scatter(x=[4,5,6], y=[4,5,6], mode="markers", marker=dict(symbol=symbol) )
fig.add_trace(new_scatter) # it doesn't show
fig.update_layout( autosize=False, width=500, height=500)
fig.show()