plotly.R icon indicating copy to clipboard operation
plotly.R copied to clipboard

Could ggplotly support tooltips created by geom_blank?

Open davidhodge931 opened this issue 2 years ago • 0 comments

It'd be useful, if this would work to create tooltips

library(tidyverse)
library(palmerpenguins)

p <- penguins |> 
  ggplot() +
  geom_blank(aes(flipper_length_mm, body_mass_g))

plotly::ggplotly(p)

davidhodge931 avatar Jul 28 '23 22:07 davidhodge931