控制 Plotly 图标

Controlling Plotly icons

我可以控制其中 Plotly 个顶部图标 JSON 结构吗?

例如,如果我想删除导出为 png 的按钮,如下所示,可以吗?

我看了Plotly Javascript Reference没成功。

目前pull request #23开放解决缺少此功能的问题。

同时,您可以使用 CSS:

删除图标
.modebar .modebar-group:first-child a:first-child {
    display: none;
}