8000
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.
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
I seem to be having an issue assigning label fills with the same color as the ellipses using the label.fill argument in geom_mark_ellipse().
label.fill
geom_mark_ellipse()
When I add the argument label.fill = "inherit" I get the error: "invalid color name 'inherit'
label.fill = "inherit"
I am using ggforce version 0.4.2 on R version 4.2.1.
ggforce
The text was updated successfully, but these errors were encountered:
Yes the examples no longer work
ggplot(iris, aes(Petal.Length, Petal.Width)) + geom_mark_circle(aes(fill = Species, label = Species), label.fill = "inherit") + geom_point()
Gives error
Error in grid.Call.graphics(C_rect, x$x, x$y, x$width, x$height, resolveHJust(x$just, : invalid color name 'inherit'
Sorry, something went wrong.
This feature is only available in the. dev version, i.e. version 0.5.0 (see the version number on the pkgdown site):
0.5.0
library(ggplot2) library(ggforce) packageVersion("ggforce") #> [1] '0.5.0' ggplot(iris, aes(Petal.Length, Petal.Width)) + geom_mark_circle( aes(fill = Species, label = Species), label.fill = "inherit" ) + geom_point()
No branches or pull requests
I seem to be having an issue assigning label fills with the same color as the ellipses using the
label.fill
argument ingeom_mark_ellipse()
.When I add the argument
label.fill = "inherit"
I get the error: "invalid color name 'inherit'I am using
ggforce
version 0.4.2 on R version 4.2.1.The text was updated successfully, but these errors were encountered: