hi,
I see this in the graph, and I whant to take out the plotly logo, how do I do that?
hi,
I see this in the graph, and I whant to take out the plotly logo, how do I do that?
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))
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!