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
plot.margin
Related to #5628
I would like to change this line:
ggplot2/R/plot-build.R
Line 289 in 4dedb82
plot_margin <- calc_element("plot.margin", theme) %||% margin()
here is the problem:
library(ggplot2) default_margin <- ggplot(mtcars, aes(disp, mpg)) + geom_point() no_margin <- ggplot(mtcars, aes(disp, mpg)) + geom_point() + theme(plot.margin = NULL) length(ggplotGrob(default_margin)$widths) #> [1] 13 length(ggplotGrob(no_margin)$widths) #> [1] 11 length(ggplotGrob(default_margin)$heights) #> [1] 16 length(ggplotGrob(no_margin)$heights) #> [1] 14
Created on 2024-12-12 with reprex v2.1.0 ~ ~
The text was updated successfully, but these errors were encountered:
This proposal makes sense to me. Is there any way I can entice you to prepare a PR for this?
Sorry, something went wrong.
Thank you! I’ll go ahead and prepare a PR to move it forward.
Successfully merging a pull request may close this issue.
Related to #5628
I would like to change this line:
ggplot2/R/plot-build.R
Line 289 in 4dedb82
here is the problem:
copy your code to the clipboard and run:
Created on 2024-12-12 with reprex v2.1.0
~
~
The text was updated successfully, but these errors were encountered: