隐藏googleVis Bubble Charts中的标签

时间:2013-01-21 00:48:49

标签: json r google-visualization googlevis

我想要隐藏标签。我认为它与选项bubble.textStyle有关,并将颜色设置为none,但我无法弄明白。

Bubble <- gvisBubbleChart(Fruits, idvar="Fruit", xvar="Sales", yvar="Expenses",
                          colorvar="Year", sizevar="Profit",
                          options=list(hAxis='{minValue:75, maxValue:125}',
                                       width=500, height=300))
plot(Bubble)

谢谢..

1 个答案:

答案 0 :(得分:5)

棘手的是它是JSON对象中的JSON对象。首先使用bubble="{}创建第一个JSON对象,然后使用textStyle:{}创建bubble="{}内的下一个JSON对象。

这是我的代码和截图,

# install.packages("googleVis", dependencies = TRUE)
require(googleVis)

Bubble <- gvisBubbleChart(Fruits, idvar="Fruit", xvar="Sales", yvar="Expenses",
                          colorvar="Year", sizevar="Profit",
                          options=list(hAxis='{minValue:75, maxValue:125}',
                                       width=500, height=300),
                                       bubble="{textStyle:{color: 'none', fontName: 
                                       <global-font-name>, fontSize: 
                                       <global-font-size>}}")
plot(Bubble)

enter image description here