-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
Grid line placement issue with bar plot and coord_flip #6348
Comments
Hi there, thanks for the report! Is this a duplicate of #6293? |
This certainly looks broken and should be fixed. But just to make sure: You know you can make this plot without # Load the ggplot2 library
library(ggplot2)
# Create sample data
data <- data.frame(
category = c("A", "B", "C", "D", "E", "F", "G"),
value = c(15, -5, 8, -10, 20, 12, -8)
)
ggplot(data, aes(y = category, x = value, fill = value > 0)) +
geom_col() +
scale_fill_manual(values = c("firebrick", "steelblue"),
guide = "none") +
labs(
title = "Bar Plot with grid line issue",
x = "Category",
y = "Value"
) +
theme_minimal() +
geom_hline(yintercept = 0, linetype = "dashed", color = "gray50") +
scale_x_continuous(limits = c(-15, 25), breaks = seq(-15, 25, 5)) Created on 2025-02-27 with reprex v2.1.1 |
Thanks @clauswilke & @teunbrand ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found a problem with
geom_col()
andcoord_flip
I expected the grid lines to show up differently
Here is the code to reproduce the bug:
Created on 2025-02-27 with reprex v2.1.1
Session info
The text was updated successfully, but these errors were encountered: