Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

plotly change marker symboly sequence

fig = px.scatter(df, x='Date', y='Metric1',
                 color = 'Color', hover_data = ["Color", "Marker"],
                 symbol = df['Marker'],
                 symbol_sequence= ['circle-open', 'circle', 'circle-open-dot', 'square'],
                 color_discrete_sequence = ['blue', 'orange', 'green', 'brown'])
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #plotly #change #marker #symboly #sequence
ADD COMMENT
Topic
Name
2+6 =