如何使 R 闪亮的绘图中的模式栏永久显示?

How to make the modebar in plotly graphs for R shiny permanently show?

所以默认情况下,当您将鼠标悬停在 Plotly 图表上时,会出现模式栏...但是有没有办法让它始终显示(无需悬停)?

我找到了一种禁用它的简单方法,但是悬停功能是否有类似的选项?

示例:

plot_ly() %>%
  config(displayModeBar = FALSE)

来自: https://plotly-r.com/control-modebar.html

谢谢!!

您可以将 displayModeBar = FALSE 更改为 displayModeBar = TRUE

示例数据来自here

fig <- plot_ly(y = ~rnorm(50), type = "box")
fig <- fig %>% add_trace(y = ~rnorm(50, 1))  %>%
  config(displayModeBar = TRUE)

fig