scrollZoom with ggplotly

Hi, first time post here.

I am able to use ggplotly(ggplot(...)) to generate my plot.ly chart display it fine. However, I’d very much like to access the scrollZoom option as per https://plot.ly/python/configuration-options/#offline-configuration-options (option listed in https://github.com/plotly/plotly.js/edit/master/src/plot_api/plot_config.js).

ggplotly(p) %>% config(scrollZoom = list("cartesian"))
ggplotly(p) %>% config(scrollZoom = "true")
ggplotly(p) %>% config(scrollZoom = TRUE)

All of the above generate no errors, but there is no scroll-over-axis-to-zoom functionality. Is this available for ggplotly?

Minimum reproducible example:
ggplotly(ggplot(data = data.frame(x=1:10,y=1:10), aes(x,y))+geom_point()) %>% config(displayModeBar=FALSE, zoomScroll="cartesian")

Thanks

Nick