mark
mark

Reputation: 73

How to increase the font size of labels on pie chart

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

Answers (1)

petermeissner
petermeissner

Reputation: 12860

Solution

Using option cex should do the job.

pie(c(3632,20,491,991,120), cex=5)

enter image description here

PS: #piechartsareevil

Upvotes: 10

Related Questions