Closed xiangpin closed 1 year ago
The size of some geom in ggplot2 >= (3.4.0) had been replaced with linewidth. see the https://github.com/tidyverse/ggplot2/pull/4959. The original edge_size parameters did not work to adjust the width of edge. This pr has fixed this issue.
size
geom
linewidth
edge_size
> library(ggVennDiagram) > x <- list(A=1:5,B=2:7,C=3:6,D=4:9) > p1 <- ggVennDiagram(x) > p2 <- ggVennDiagram(x, edge_size = 4) > p1 + p2
The
size
of somegeom
in ggplot2 >= (3.4.0) had been replaced withlinewidth
. see the https://github.com/tidyverse/ggplot2/pull/4959. The originaledge_size
parameters did not work to adjust the width of edge. This pr has fixed this issue.