Skip to content

add symbol types to the marker style chapter #2182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
chriddyp opened this issue Feb 11, 2020 · 6 comments · Fixed by #2197
Closed

add symbol types to the marker style chapter #2182

chriddyp opened this issue Feb 11, 2020 · 6 comments · Fixed by #2197
Assignees

Comments

@chriddyp
Copy link
Member

Marker style comes up as the first hit when we search for marker symbol types, but it doesn't have any examples of symbols

image

@emmanuelle
Copy link
Contributor

emmanuelle commented Feb 11, 2020

As a starting point the code below displays the symbols

import plotly.graph_objects as go
fig = go.Figure()
for i in range(45):
    fig.add_trace(go.Scatter(x=[i], y=[1], 
                             marker_symbol=i, marker_color='black', showlegend=False))
    fig.add_trace(go.Scatter(x=[i], y=[2], 
                             marker_symbol=100 + i, marker_color='black', showlegend=False))
fig.show()

It should be improved though because at the moment this is very ugly :-)

image

@emmanuelle
Copy link
Contributor

@Mahdis-z @jdamiba is one of you interested in taking this one?

@chriddyp
Copy link
Member Author

An example we used to have and that we previously work shopped: plotly/documentation#16

@emmanuelle
Copy link
Contributor

@jdamiba
Copy link

jdamiba commented Feb 11, 2020

I'm interested! Always wanted to learn more about styling markers and this will be the perfect opportunity.

@jdamiba
Copy link

jdamiba commented Feb 20, 2020

closed by #2197

@jdamiba jdamiba closed this as completed Apr 22, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants