It seems that the x-thin
markers are invisible.
fig = go.Figure()
fig.add_scatter(y=np.random.lognormal(size=100), mode='lines+markers', marker_symbol='x-thin')
fig.show()
How to make them visible?
It seems that the x-thin
markers are invisible.
fig = go.Figure()
fig.add_scatter(y=np.random.lognormal(size=100), mode='lines+markers', marker_symbol='x-thin')
fig.show()
How to make them visible?
Hum, pretty weird. Could it work for you to use instead x-thin-open
? These ones are visible.
Actually it doesn’t seem to be visible because the line width is very small. See the code below. This was already mentioned in https://github.com/plotly/plotly.js/issues/1707
import numpy as np
import plotly.graph_objects as go
fig = go.Figure()
fig.add_scatter(y=[1, 2, 3, 4], mode='markers', marker_symbol=34, marker_line_width=4)
fig.show()