plotly_ipywidget_notebooks icon indicating copy to clipboard operation
plotly_ipywidget_notebooks copied to clipboard

'FigureWidget' object has no attribute 'marker'

Open baixianger opened this issue 3 years ago • 3 comments

image

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

baixianger avatar Mar 02 '22 22:03 baixianger

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

baixianger avatar Mar 02 '22 22:03 baixianger

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

baixianger avatar Mar 02 '22 22:03 baixianger

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() 

iacisme avatar Oct 02 '22 04:10 iacisme