0

我正在尝试为我的客户开发一个仪表板,我必须在其中使用几个google web components. 我的第一种方法是显示一个analytic query我正在使用的简单方法:

<google-analytics-query
  ids="ga:xxxxxxxx"
  metrics="ga:sessions"
  dimensions="ga:country"
  sort="-ga:sessions"
  start-date="2015-10-01"
  end-date="2015-10-31"
  max-results="5">
</google-analytics-query>

但是什么都看不见!我指的是https://elements.polymer-project.org/elements/google-analytics?active=google-analytics-query

怎么了?

更新 我还尝试了以下代码来渲染google-analytics-chart输出,结果是一个大白框。

<google-analytics-chart
  type="area"
  ids="ga:88814676"
  metrics="ga:sessions"
  dimensions="ga:date"
  start-date="2015-10-01"
  end-date="2015-10-31"
  max-results="5">
</google-analytics-chart>

4

1 回答 1

0

这个问题也在 Github repo 上被问到该<google-analytics>元素。你可以在那里看到答案: https ://github.com/GoogleWebComponents/google-analytics/issues/29#issuecomment-157367824

问题的要点:使用<google-analytics-chart>元素需要通过元素进行身份验证<google-signin>才能工作。

于 2015-11-17T22:22:42.427 回答