1

我正在尝试使用 Google Charts 在本地网页的 3x3 网格中显示多个图表。以下示例使用 UiApp 创建布局:

var uiApp = UiApp.createApplication();

dashboard.add(uiApp.createVerticalPanel()
                   .add(uiApp.createHorizontalPanel()
                   .add(ageFilter).add(genderFilter)
                   .setSpacing(70))
         .add(uiApp.createHorizontalPanel()
                   .add(pieChart).add(tableChart)
                   .setSpacing(10)));

uiApp.add(dashboard);

https://developers.google.com/apps-script/articles/charts_dashboard

但是,似乎 UiApp 库仅适用于托管在 Google 服务上的应用程序。我想在本地网页上使用类似的东西。有哪些可用选项?

4

2 回答 2

1

您不能将 Apps 脚本 UI 嵌入到不在 Google 协作平台上托管的外部网站中。问题跟踪器中目前有一个未解决的问题。请为该问题加注星标以注册您的兴趣。

于 2013-07-01T06:18:21.610 回答
0

将每个图表放在 html 表格中提供了一个快速的解决方案:

<table>
    <tr>
        <td><div id="GoogleChartID"></div></td>
        ...
    </tr>
    ...
</table>   
于 2013-07-01T19:17:59.310 回答