Closed
Description
Hi, thanks for all your work on ggplot2; first issue report for me. I recently updated to ggplot2 3.3.0 and my code to produce facet maps with facet strips on the left no longer seems able to produce text the right way up. Reprex below
ggplot(mpg, aes(displ, hwy)) +
geom_point() +
facet_wrap(~cyl, strip.position = 'right') +
theme(strip.text.y = element_text(angle=45))
ggplot(mpg, aes(displ, hwy)) +
geom_point() +
facet_wrap(~cyl, strip.position = 'left') +
theme(strip.text.y = element_text(angle=45))