如何在plotly中自定义模式栏(最好在R中)?

时间:2019-01-07 15:37:08

标签: r plotly r-plotly

尤其是,我正在寻找一种隐藏除下载图像按钮以外的所有按钮的方法。我尝试使用config参数,但到目前为止,只能使用 displayModeBar = F 来隐藏整个模式栏。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

这是您要寻找的东西:

plot_ly(economics, x = ~pop) %>% 
  config(displaylogo = FALSE, collaborate = FALSE,
         modeBarButtonsToRemove = c(
           'sendDataToCloud', 'autoScale2d', 'resetScale2d', 'toggleSpikelines',
           'hoverClosestCartesian', 'hoverCompareCartesian',
           'zoom2d','pan2d','select2d','lasso2d','zoomIn2d','zoomOut2d'
         ))

enter image description here

由于可能的按钮将取决于图形的类型,因此请记住this列表。