I want to create a title for my chart. I previously used default R plotting and 3 mtext calls to create the title. The reason being 3 parts of the title need to be formatted differently (color, size,...).
How can I achieve that with ggplot2?
Previous I had:
mtext("My",col="#990033",cex=3.5,line=2,adj=0.30, font=14)
mtext("Custom",col='azure4',cex=3.5,line=2,adj=0.51, font=14)
mtext("Title",col='azure4', cex=3.5, line=2,adj=0.65, font=16)
I tried with grid.arrange() but then I can only specific 1 element for "top".