R/layout.R
rangeslider.Rd
Add a range slider to the x-axis
rangeslider(p, start = NULL, end = NULL, ...)
plotly object.
a start date/value.
an end date/value.
these arguments are documented here https://plotly.com/r/reference/#layout-xaxis-rangeslider
Carson Sievert
plot_ly(x = time(USAccDeaths), y = USAccDeaths) %>% add_lines() %>% rangeslider() d <- tibble::tibble( time = seq(as.Date("2016-01-01"), as.Date("2016-08-31"), by = "days"), y = rnorm(seq_along(time)) ) plot_ly(d, x = ~time, y = ~y) %>% add_lines() %>% rangeslider(d$time[5], d$time[50])