2014-03-28 15 views
1

我一直在试图增加charts.PerformanceSummary图表中图例的大小。增加Performance Analytics图表中图例的大小.Perfromance摘要

这里是我的代码:

charts.PerformanceSummary(data,geometric= FALSE,cex.axis=1.5, main="Desk Performance", legend(cex=1.5)) # I tried this but legend(cex=1.5) does not work 

任何想法如何提高传说的大小,所以我可以看了吗?

谢谢!

回答

0

legend(cex=1.5)是不正确的语法。改为使用cex.legend=1.5,如下所示:

charts.PerformanceSummary(data,geometric= FALSE,cex.axis=1.5, main="Desk Performance", cex.legend=1.5)