jonmmease / plotly_ipywidget_notebooks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

'FigureWidget' object has no attribute 'marker'

baixianger opened this issue · comments

image

in the notebook '[Overview.ipynb]', there occurs an error. i don't know why?
thank you!

and I found the code below works.
scatt1.update_traces(mode='markers') scatt1.update_traces(marker=dict(size=12))

image

and another error. sorry, I am a Plotly beginner.

Hey, thanks for your answer.

Try the code below, if you haven't gotten it working already.

You need to do the .show() at the end or you get another error.

Hope that helps.

scatt1.update_traces(mode = 'markers',
                                  marker = dict(size = 12)
                                   ).show()