waffle
waffle copied to clipboard
removing legend from the waffle chart
Hi, Is there any method to remove legend from the chart?
You can simply add theme(legend.position = "none")
; here's a small reproducible example:
waffle(c(one = 1, two = 10, three = 4), rows = 3) +
theme(legend.position = "none")