We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79d45ac commit b46d960Copy full SHA for b46d960
NEWS.md
@@ -1,5 +1,8 @@
1
# ggplot2 (development version)
2
3
+* Fix a bug in `geom_abline()` that resulted in `intercept` not being subjected
4
+ to the transformation of the y scale (@thomasp85, #3741)
5
+
6
* Fix bug in `guide_coloursteps()` that would repeat the terminal bins if the
7
breaks coincided with the limits of the scale (@thomasp85, #4019)
8
R/ggplot-global.R
@@ -20,7 +20,8 @@ ggplot_global$element_tree <- list()
20
"colour", "fg", "fill", "group", "hjust", "label", "linetype", "lower",
21
"lty", "lwd", "max", "middle", "min", "pch", "radius", "sample", "shape",
22
"size", "srt", "upper", "vjust", "weight", "width", "x", "xend", "xmax",
23
- "xmin", "xintercept", "y", "yend", "ymax", "ymin", "yintercept", "z"
+ "xmin", "xintercept", "y", "yend", "ymax", "ymin", "yintercept", "z",
24
+ "intercept"
25
)
26
27
ggplot_global$all_aesthetics <- .all_aesthetics
@@ -49,4 +50,4 @@ ggplot_global$x_aes <- c("x", "xmin", "xmax", "xend", "xintercept",
49
50
"xmin_final", "xmax_final", "xlower", "xmiddle", "xupper", "x0")
51
52
ggplot_global$y_aes <- c("y", "ymin", "ymax", "yend", "yintercept", "ymin_final",
- "ymax_final", "lower", "middle", "upper", "y0")
53
+ "ymax_final", "lower", "middle", "upper", "y0", "intercept")
0 commit comments