我正在尝试使用 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 服务上的应用程序。我想在本地网页上使用类似的东西。有哪些可用选项?