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

implement geom_GeomStrippedCols() to be used with plotly

Open asnewbur opened this issue 1 year ago • 1 comments

be able to have every other column striped. works with ggplot, but not with ggplotly

  output$plot = renderPlotly({
    ggplotly(
      ggplot(data, mapping = aes(x = x, y = y)) +
        theme_light() +
        geom_striped_cols() +
        labs(x = "x", y = "y") +
        theme(panel.grid.major.x = element_blank())
    )
  })  

asnewbur avatar Jul 08 '24 14:07 asnewbur

What package is geom_striped_cols from?

cpsievert avatar Sep 03 '24 15:09 cpsievert