-
Notifications
You must be signed in to change notification settings - Fork 632
Open
Labels
@bowerth
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)