Skip to content
Snippets Groups Projects
Commit 1f36f3fc authored by Gael  MILLOT's avatar Gael MILLOT
Browse files

release v12.4.0: fun_gg_empty_graph improved so that no need to use pdf(NULL) anymore

parent 75cf06e1
No related branches found
No related tags found
No related merge requests found
...@@ -171,6 +171,11 @@ Gitlab developers ...@@ -171,6 +171,11 @@ Gitlab developers
## WHAT'S NEW IN ## WHAT'S NEW IN
### v12.4.0
1) fun_gg_empty_graph improved so that no need to use pdf(NULL) anymore
### v12.3.0 ### v12.3.0
1) fun_gg_empty_graph with a true white background (to prevent some display bugs in png and pdf devices) 1) fun_gg_empty_graph with a true white background (to prevent some display bugs in png and pdf devices)
......
...@@ -6974,7 +6974,8 @@ fun_gg_empty_graph <- function( ...@@ -6974,7 +6974,8 @@ fun_gg_empty_graph <- function(
panel.background = ggplot2::element_rect(fill = "white", color = NA), panel.background = ggplot2::element_rect(fill = "white", color = NA),
plot.title = ggplot2::element_text(size = title.size) # stronger than text plot.title = ggplot2::element_text(size = title.size) # stronger than text
)) ))
suppressWarnings(print(eval(parse(text = paste(paste0(tempo.gg.name, 1:tempo.gg.count), collapse = " + "))))) final <- suppressWarnings(eval(parse(text = paste(paste0(tempo.gg.name, 1:tempo.gg.count), collapse = " + "))))
return(final)
} }
   
   
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment