如何在R中使用曲线图时完全移除顶部的hower bar或部分?

时间:2016-11-21 07:48:14

标签: r plotly

如何删除顶部的hower栏,它有下载图,放大或缩小或R中的图表上的选项?

enter image description here

2 个答案:

答案 0 :(得分:0)

我为你做了一点点谷歌。这应该很简单,使用它:

config(displayModeBar = F)

看看Vance Lopez的答案:Removing the Edit Chart link from an R plotly graph

  

从文档中,使用config:

     

Plotly object p

     

p%>%config(showLink = F)您可以查看.js配置选项   这里。

     

注意:"保存并编辑云中的情节"模式栏中的按钮   顶部仍然存在。您可以使用

关闭模式栏      

config(displayModeBar = F)GitHub上有一个要编辑的请求   特定的模式栏按钮。

答案 1 :(得分:0)

与flipperweid的答案类似,您可以使用config(plot, modeBarButtonsToRemove = list("sendDataToCloud"))删除单个按钮