Home > Software engineering >  How to make the modebar in plotly graphs for R shiny permanently show?
How to make the modebar in plotly graphs for R shiny permanently show?

Time:11-30

So by default, the modebar for Plotly graphs appears when you hover your mouse over it...but is there a way to make it always show (without hovering)?

I've found an easy way to disable it, but is there a similar option for the hover functionality?

Example:

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

from: example

  • Related