Remove "Produced with Plotly"

Is it possible to remove it in the free version?

Thanks

See https://plot.ly/javascript/configuration-options/#hide-the-plotly-logo-on-the-modebar

You need to edit the config of graph which is a dictionary, you can remove specific buttons too. See the code example,you need to pass something like this.

dcc.Graph(
    id= "custom_fields_pie_chart",
    config={
        "displaylogo": False,
        'modeBarButtonsToRemove': ['pan2d','lasso2d']
    },
   figure =.......
3 Likes