We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This plot renders with the rangeslider way out of focus
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()