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!

1 Like