gvisPieChart工具提示 - 仅百分比

时间:2014-10-09 21:44:41

标签: r tooltip shiny googlevis

在这个例子中,我想要一个仅显示百分比的工具提示,省略绝对值。

a<-c('option1','option2','option3')
b<-c(35,80,10)
data<-data.frame(a,b)

myplot<-gvisPieChart(data,options=list(title='Example',width=1000, height=500))

plot(myplot)

https://google-developers.appspot.com/chart/interactive/docs/gallery/piechart 我发现了这个:

enter image description here

但我不知道如何以及是否有可能适应googleVis。

提前致谢。

路易斯

1 个答案:

答案 0 :(得分:2)

您可以添加选项tooltip = "{text:'percentage'}"

library(googleVis)
a<-c('option1','option2','option3')
b<-c(35,80,10)
data<-data.frame(a,b)

myplot<-gvisPieChart(data,options=list(title='Example',width=1000, height=500
                                       , tooltip = "{text:'percentage'}"))

plot(myplot)

enter image description here