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
Seems to affect only plot.title. Arguments passed to element_text() do not seem to affect the chart.
element_text()
library(plotly) set.seed(123) df <- diamonds[sample(1:nrow(diamonds), size = 1000),] p <- ggplot(df, aes(carat, price)) + geom_point() + labs(title = "Diamonds", x = "x-axis -> Carat", y = "y-axis -> Price") + theme(plot.title = element_text(size = 50, colour = "blue"), axis.title.x = element_text(size = 20, colour = "red"), axis.title.y = element_text(size = 20, colour = "green")) p ggplotly()
The text was updated successfully, but these errors were encountered:
This should be fixed in f1900cc. Let us know if you still have problems.
Sorry, something went wrong.
No branches or pull requests
Seems to affect only plot.title. Arguments passed to
element_text()
do not seem to affect the chart.The text was updated successfully, but these errors were encountered: