Hi Megh, just set the legned position to 'none' using options, by putting + opts(legend.position="none") after your code. ggplot(diamonds, aes(carat, ..density..)) + geom_histogram(binwidth = 0.2, aes(fill = cut)) + facet_grid(. ~ cut) + opts(legend.position="none") HTH, Matthieu