-
Notifications
You must be signed in to change notification settings - Fork 633
R plotly: subplot annotations #1181
New issue
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
Comments
Hi, |
With 4caa068, this now works, and you can remove the |
For posterity, here is a more minimal example of the bug fix p1 <- plot_ly(mtcars) %>%
add_annotations(text = ~cyl, x = ~wt, y = ~mpg)
p2 <- plot_ly(mtcars) %>%
add_annotations(text = ~am, x = ~wt, y = ~mpg)
subplot(p1, p2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I would like to create a plotly-chart with annotated subplots. Unfortunately, however, the annotations in the "CombinedPlot" below are misaligned. Any help on properly placing annotations in the subplots would be greatly appreciated.
The text was updated successfully, but these errors were encountered: