how to remove plotly toolbar

Solutions on MaxInterview for how to remove plotly toolbar by the best coders in the world

showing results for - "how to remove plotly toolbar"
Chesney
03 Jan 2018
1dcc.Graph(
2    id='my-graph',
3    figure={'data': [{'x': [1, 2, 3]}]},
4    config={
5        'displayModeBar': False
6    }
7)
8