We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
library(shiny) library(plotly) ui <- fluidPage( plotlyOutput("plot") ) server <- function(input, output, session) { output$plot <- renderPlotly({ plot_ly(x = 1) }) observe({ print(event_data("plotly_relayout")) }) } shinyApp(ui, server)
The text was updated successfully, but these errors were encountered:
a851eea
don't try to attach key to relayout event data; fixes #1039
29dd170
also, make use of HTMLWidgets.shinyMode and remove old code
No branches or pull requests
The text was updated successfully, but these errors were encountered: