向gvisGeoChart添加标题

时间:2016-03-22 17:55:04

标签: r google-visualization googlevis

我在googlevis包中为gvisGeoChart添加标题时遇到问题。

以下是我正在使用的代码:

test <- gvisGeoChart(state.data[["MA"]], locationvar = 'Location', colorvar = 'RateofLVP',
                 options=list(region="US-MA", 
                              displayMode="markers", 
                              resolution="provinces",
                              width=600, height=400,
                              title='TESTING MAPS',
                              colorAxis="{values:[1, 5],
                              colors:[\'yellow',\'red']}"))

当我运行此代码时,它会生成正确的geochart,但图表顶部没有标题。谢谢你的帮助!

1 个答案:

答案 0 :(得分:0)

我想出了一个可能的解决方案,我可以用html格式的标题代码替换googleVis图表标题部分中的文本。谢谢你的帮助!