R禁用图例单击和图例双击

时间:2019-05-18 02:49:56

标签: r ggplot2 shiny plotly r-plotly

我想使用R Plotly从服务器端禁用plotly图例选择。我们看到here可以使用以下方法在可绘制的javascript上实现此目标,

gd.on('plotly_legendclick',function() { return false; })

有什么方法可以使用event_register()event_data()在R中实现?

我发现了一个使用CSS禁用图例的hacky解决方案。但是,如果同一output$gg具有多个不同的图,则CSS代码将禁用所有图的图例。

代表:

最后的目标,单击下面的图例一定不能隐藏任何要点。

library(shiny)
library(plotly)
library(tidyverse)

ui <- fluidPage(
  plotlyOutput("gg"),
  verbatimTextOutput("click"),
  verbatimTextOutput("doubleclick")
)

server <- function(input, output, session) {

  output$gg <- renderPlotly({
    p <- ggplot(mtcars, aes(wt, mpg, color = factor(cyl))) +
      geom_point() + 
      facet_wrap(~vs)
    ggplotly(p) %>%
      event_register("plotly_legendclick") %>%
      event_register("plotly_legenddoubleclick")
  })

  output$click <- renderPrint({
    event_data("plotly_legendclick")
  })

  output$doubleclick <- renderPrint({
    event_data("plotly_legenddoubleclick")
  })
}

shinyApp(ui,server)

1 个答案:

答案 0 :(得分:1)

这是htmlwidgets::onRender的工作:

library(plotly)
library(htmlwidgets)

x <- c(1:15)
y <- c(1:15)
w <- gl(3,5)
dat <- data.frame(x = x, y = y, w = w)
example <- ggplot(dat, aes(x = x, y = y, color = w)) + geom_line()

ggplotly(example) %>% 
  onRender("function(el,x){el.on('plotly_legendclick', function(){ return false; })}")