We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following code does not give a green and a red dot in plotly, but it does in ggplot2. The ggplot2 behaviour is correct.
library(plotly) df <- data.frame(x = c(1,2), y = c(0,0), color = rep("yellow", 2), fill = 1:2) p <- ggplot(df) + geom_point(aes(x = x, y = y, fill = fill, color = color), size = 5, shape = 21) + scale_fill_gradient(low = "green", high = "red") ggplotly(p)
PR on its way
The text was updated successfully, but these errors were encountered:
Add failing test case for plotly#2298
9983a5a
Closes plotly#2298: geom_point with fill and colour
c68baa1
fbd9bb6
05fc539
270d20e
No branches or pull requests
The following code does not give a green and a red dot in plotly, but it does in ggplot2. The ggplot2 behaviour is correct.
PR on its way
The text was updated successfully, but these errors were encountered: