I am trying to make the legend key fill for a ggplot transparent. I followed the instructions on one of Hadley\'s ggplot2 guides for changing the legend key fill, but for some
Additionally to legend.key = element_blank() you can put legend.background=element_blank() within theme(), to make the text transparent as well
legend.key = element_blank()
legend.background=element_blank()
theme()
This will also make the default white background transparent when using gg_themes
gg_themes