This plot renders with the rangeslider way out of focus ```r library(babynames) library(dplyr) library(plotly) nms <- filter(babynames, name %in% c("Sam", "Alex")) p <- ggplot(nms) + geom_line(aes(year, prop, color = sex, linetype = name)) ggplotly(p) %>% rangeslider() ``` <img width="1166" alt="Screen Shot 2019-03-19 at 3 18 27 PM" src="https://user-images.githubusercontent.com/1365941/54638980-50864680-4a5a-11e9-999f-abf0a493345e.png">