2014-03-28 19 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)