We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using scrollZoom together with nticks, the plot gets stuck when trying to zoom around.
scrollZoom
nticks
A few scrolls are working, then the plot gets stuck, That also hapens, when zooming in first.
library(plotly) df <- data.frame( ts = seq(as.POSIXct("2019-03-20 00:00:00"), by = "hour", length.out = 24), val = sample(1:100, 24) ) plot_ly() %>% add_bars(data = df, x = ~ts, y = ~val) %>% layout(dragmode = "select", autosize = TRUE, bargap = 0.05, xaxis = list(type = "date", nticks = 24, tickmode = "auto" )) %>% config(scrollZoom = TRUE)
The text was updated successfully, but these errors were encountered:
This is a plotly.js issue, follow here for progress plotly/plotly.js#3729
Sorry, something went wrong.
No branches or pull requests
When using
scrollZoom
together withnticks
, the plot gets stuck when trying to zoom around.A few scrolls are working, then the plot gets stuck, That also hapens, when zooming in first.
The text was updated successfully, but these errors were encountered: