Reputation: 11
I am trying to add a "hover" features that shows the name of the country plotted in a symbols plot in an R Shiny app. Most of the guidance on the internet is for ggplot. Can "hover" be added to a regular symbols plot?
output$info <- renderText({
≠paste0("Country =", input$plot_click)
})
This is what I have after my symbols plots in the server section of my code. However, it does not bring up the country name though.
Upvotes: 1
Views: 615
Reputation: 506
Your example might refer to Interactive plots, you can refer to shiny::runGitHub('shiny-examples/118-highcharter-births/')
.
Upvotes: 2