As ggplot2 produces nice colored graphs but sometimes it is required to have black and white graphs with pattern fills. I wonder how to do this in ggplot2, say for this code:
ggplot(diamonds, aes(cut, fill=cut)) + geom_bar()
Edit
Is there any function in R to do pattern fills for graphs?

gridExtra,example(patternGrob). Not that I'd recommend it though. – baptiste Sep 30 '11 at 22:04gridSVGpackage seems to be fairly close to providing a solution usinggrid.garnish()and fills defined as in this page w3.org/TR/SVG/pservers.html – baptiste Sep 30 '11 at 22:38