plotly / plotly.R

An interactive graphing library for R
https://plotly-r.com
Other
2.55k stars 622 forks source link

implement geom_GeomStrippedCols() to be used with plotly #2365

Open asnewbur opened 2 months ago

asnewbur commented 2 months ago

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())
    )
  })  
cpsievert commented 3 weeks ago

What package is geom_striped_cols from?