I am building a bar chart for which bars suffice as indications of horizontal (x) placement, so I\'d like to avoid drawing the superfluous vertical gridlines.
I unde
Try using
scale_x_continuous(breaks = NULL)
This would remove all the vertical gridlines as well as x-axis tickmark labels.