7

我想隐藏标签。我相信这与选项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)

谢谢..

4

1 回答 1

5

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

这是我的代码和屏幕截图,

# 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)

在此处输入图像描述

于 2013-01-21T03:30:21.107 回答