Skip to content
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

NULL plot.margin breakdown the shape of the gtable #6234

Closed
Yunuuuu opened this issue Dec 12, 2024 · 2 comments · Fixed by #6235
Closed

NULL plot.margin breakdown the shape of the gtable #6234

Yunuuuu opened this issue Dec 12, 2024 · 2 comments · Fixed by #6235

Comments

@Yunuuuu
Copy link
Contributor

Yunuuuu commented Dec 12, 2024

Related to #5628

I would like to change this line:

plot_margin <- calc_element("plot.margin", theme)

 plot_margin <- calc_element("plot.margin", theme)  %||% margin()

here is the problem:

copy your code to the clipboard and run:

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
~
~

@teunbrand
Copy link
Collaborator

This proposal makes sense to me. Is there any way I can entice you to prepare a PR for this?

@Yunuuuu
Copy link
Contributor Author

Yunuuuu commented Dec 12, 2024

Thank you! I’ll go ahead and prepare a PR to move it forward.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants