Plotly, scatter plot: what are the possible options for the dash entry in the line dictionary?
For example using some code like this one:
fig.add_scatter(x=x, y=y, mode='lines', line=dict(dash='dot'))
The possibilities I know of are 'lines', 'dash', 'dot' and 'dashdot'. I was looking for another way to differentiate a new plot using this option, like spaced dots for example. Unfortunately I couldn't find anything where I looked (basically web searches and plotly line chart documentation). Is there any other possible value for this argument or is that all there is?
Category Data Science