How to take out the plotly icon of the go.Scatter?

hi,

I see this in the graph, and I whant to take out the plotly logo, how do I do that?
image

I don’t think you can… you can take out the entire tool bar by adding this to dcc.Graph()

dcc.Graph(config=dict(displayModeBar=False))

@topotaman

This stack overflow answer is a solution:

fig.show(id='the_graph', config= {'displaylogo': False})

or

dcc.Graph(id='the_graph', config= {'displaylogo': False})

thanks! thanks thanks thanks, yes it works!

For go.FigureWidget, there is no .show() method. So I way I found to fix it was to write the config dictionary after the figure was created. Also, I found it works best to overwrite the dictionary since there is some plotyURL stuff in there which interferes too (i.e. causes the logo to still be shown).

My solution was:
fig = go.FigureWidget()

fig._config = { ‘displaylogo’: False }

fig.add_trace(…) # and so on