Connor K
Connor K

Reputation: 11

How to see data while hovering over a point in a R Shiny app?

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

Answers (1)

Your example might refer to Interactive plots, you can refer to shiny::runGitHub('shiny-examples/118-highcharter-births/').

shiny-examples/118-highcharter-births

Upvotes: 2

Related Questions