假设:
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
我可以关闭/删除顶部的图例吗?或者从顶部向左/右移动它?
答案 0 :(得分:2)
我会发布自己的答案,以便关闭此问题。
p4$chart(showLegend = FALSE)