如何增加饼图上标签的字体大小

How to increase the font size of labels on pie chart

对于我的基本问题,我感到非常抱歉。我想增加标签的字体大小。我试过了 cex.label 。但是没用。

pie(c(3632,20,491,991,120))

解决方案

使用选项 cex 应该可以完成这项工作。

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

PS: #piechartsareevil