Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
With the theming system, set strip.text to control the text appearance and
strip.background to control the
background appearance (Figure 11-6):
library(gcookbook)# For the data setggplot(cabbage_exp,aes(x=Cultivar,y=Weight))+geom_bar(stat="identity")+facet_grid(.~ Date)+theme(strip.text=element_text(face="bold",size=rel(1.5)),strip.background=element_rect(fill="lightblue",colour="black",size=1))