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.
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
Cannot reverse 3D axis
library(plotly) mtcars$am[which(mtcars$am == 0)] <- 'Automatic' mtcars$am[which(mtcars$am == 1)] <- 'Manual' mtcars$am <- as.factor(mtcars$am) p <- plot_ly(mtcars, x = ~wt, y = ~hp, z = ~qsec, color = ~am, colors = c('#BF382A', '#0C4B8E')) %>% add_markers() %>% layout(scene = list(xaxis = list(title = 'Weight', autorange = "reversed"), yaxis = list(title = 'Gross horsepower'), zaxis = list(title = '1/4 mile time'))) p
The text was updated successfully, but these errors were encountered:
autorange: "reversed"
Thanks, I think this is a plotly.js bug
Sorry, something went wrong.
Is there a simple way that I can hack the code to solve this?
No, it will require a fix at the plotly.js level plotly/plotly.js#1940
This appears to be fixed now
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Cannot reverse 3D axis
The text was updated successfully, but these errors were encountered: