rCharts nplot饼图,关闭图例/切换按钮

时间:2016-03-11 00:45:48

标签: r rcharts

假设:

df <- data.frame(var = letters[1:26], count = sample(1:300, 26),
                 label = sample(toupper(letters[1:5]), 26, replace = T))
library(rCharts)

p4 <- nPlot(count ~ var, data = df, type = 'pieChart',
            width = 500, height=500)
p4$chart(tooltipContent = "#! function(x, y){ 
  return 'Type: ' + x + '<br>Count: ' + y
} !#")
p4

我可以关闭/删除顶部的图例吗?或者从顶部向左/右移动它?

1 个答案:

答案 0 :(得分:2)

我会发布自己的答案,以便关闭此问题。

p4$chart(showLegend = FALSE)