hAxis.title
和vAxis.title
选项似乎不会在包gvisScatterChart
中为googleVis
设置轴标题。
plot(gvisScatterChart(data.frame(x = 3, y = 4), options=list(hAxis.title = 'foo')))
"富"不会显示为横轴标题。
答案 0 :(得分:0)
您应该以字典外观hAxis
对象格式将选项传递给JSON
:
plot(gvisScatterChart(data.frame(x = 3, y = 4), options=list(hAxis="{title:'foo'}")))
请参阅help page底部的示例以及hAxis
下的
一个JSON对象。默认
null
。具有成员的对象,用于配置各种水平轴元素。要指定此对象的属性,可以使用对象文字表示法,如下所示:
{title:'Hello',titleTextStyle:{color:'#FF0000'}}