How to delete/hide the top "menu" in a Figure?

It would be possible to “Hide” the Menu of the figure?

((My English is not good enough and I don’t know the “name” of that portion of Plotly))

delete

You need to set this in the config argument when displaying the figure.
For a figure:

fig.show(config={"displayModeBar": True})

In Dash:

dcc.Graph(figure=fig, config={"displayModeBar": True})

Perfect!

THANK YOU very much :wink:

Can also use css to disable that for all of the figures:

.modebar {
display: none !important;
}