Google Google Apps 脚本中的图表 HTML App
Google Charts in a Google Apps Scripts HTML App
我正在尝试让 Google 图表在 Apps 脚本中工作。该图表在 fiddle 中工作,见以下 link:
但只有一部分在 Google Apps 脚本中有效。
doGet()
代码是:
function doGet() {
return HtmlService.createHtmlOutputFromFile('index')
.setSandboxMode(HtmlService.SandboxMode.IFRAME);
}
原始代码来自另一个堆栈溢出post显示here
第三个过滤器不适用于 Google Apps 脚本。
1 个过滤器 - 人口(工作)
2 过滤器 - 特性(工作)
3 过滤器 - 过滤器(不起作用)..
我正在尝试让 Google 图表在 Apps 脚本中工作。该图表在 fiddle 中工作,见以下 link:
但只有一部分在 Google Apps 脚本中有效。
doGet()
代码是:
function doGet() {
return HtmlService.createHtmlOutputFromFile('index')
.setSandboxMode(HtmlService.SandboxMode.IFRAME);
}
原始代码来自另一个堆栈溢出post显示here
第三个过滤器不适用于 Google Apps 脚本。
1 个过滤器 - 人口(工作) 2 过滤器 - 特性(工作) 3 过滤器 - 过滤器(不起作用)..