本文介绍了从googleVis输出中删除页脚的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以从googleVis输出中删除或隐藏页脚?这是每个googleVis输出中显示的内容.

Is there a way to remove or hide the footer from the googleVis output? Here is what shows up in every googleVis output.

推荐答案

创建可视化文件

M <- gvisColumnChart(data, xvar = "", yvar = "", options = list(), chartid)

然后删除页脚和标题

M$html$footer <- NULL
M$html$jsFooter <- NULL
M$html$caption <- NULL

然后打印或绘制图表

print(M,tag = "html" ,file = "M.html")
plot(M)

这篇关于从googleVis输出中删除页脚的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 15:39