Reputation: 73
I am so sorry for my basic question. I want to increase the font size of labels. I tried cex.label
. But it doesn't work.
pie(c(3632,20,491,991,120))
Upvotes: 7
Views: 16732
Reputation: 12860
Using option cex
should do the job.
pie(c(3632,20,491,991,120), cex=5)
Upvotes: 10