-
Notifications
You must be signed in to change notification settings - Fork 635
Open
Labels
Description
Is there a chance that the sec.axis argument of y-scales will be supported? Unfortunately, the right-hand y-axis does not appear in the ggplotly() output
p <- ggplot(mtcars, aes(cyl, mpg)) +
geom_point()
## Create a simple secondary axis
p2 <- p + scale_y_continuous(sec.axis = sec_axis(~.+10))
ggplotly(p2)gtsitsiridis, edvergsten, adrianoesch, SaJaToGu and yinghawl