INFO526-DataViz / project-final-Infographic-Innovators

Infographic Innovators team GitHub repository for Final Project from INFO 526 @ UArizona
https://info526-dataviz.github.io/project-final-Infographic-Innovators/
0 stars 2 forks source link

Interactive Shiny App #15

Open bharath03-a opened 9 months ago

bharath03-a commented 9 months ago

Initial ideas:

Gchism94 commented 7 months ago

Both are possible with a work-around. You would have to create images (probably .svgs or high-quality .pngs) for every plot you want in the tool-tip. You would then embed the image into the tooltip:

ggplotly(p, tooltip = c("state", "value", "image_url")) %>%
  layout(hoverlabel = list(align = "left"),
         hovermode = 'closest')