Open bharath03-a opened 11 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')
Initial ideas: