├── .gitignore ├── account-summaries-import.html ├── README.md ├── google-analytics.html ├── index.html ├── LICENSE ├── bower.json ├── google-analytics-loader.html ├── google-analytics-dashboard.html ├── demo └── index.html ├── google-analytics-date-selector.html ├── google-analytics-view-selector.html ├── google-analytics-chart.html └── google-analytics-query.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /account-summaries-import.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | google-analytics 2 | ================ 3 | 4 | See the [component page](https://elements.polymer-project.org/elements/google-analytics) for more information. 5 | -------------------------------------------------------------------------------- /google-analytics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2014 Google Inc 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-analytics", 3 | "version": "1.2.3", 4 | "description": "Encapsulates Google Analytics dashboard features into web components", 5 | "homepage": "https://googlewebcomponents.github.io/google-analytics", 6 | "authors": [ 7 | "Philip Walton " 8 | ], 9 | "main": "google-analytics.html", 10 | "license": "Apache-2.0", 11 | "keywords": [ 12 | "google", 13 | "analytics", 14 | "dashboard", 15 | "polymer", 16 | "web-component", 17 | "web-components" 18 | ], 19 | "ignore": [ 20 | "/.*", 21 | "/test/" 22 | ], 23 | "dependencies": { 24 | "polymer": "Polymer/polymer#^1.0.0", 25 | "promise-polyfill": "PolymerLabs/promise-polyfill#^1.0.0", 26 | "ga-api-utils": "googleanalytics/javascript-api-utils#^0.2.0", 27 | "google-chart": "GoogleWebComponents/google-chart#^1.0.0", 28 | "google-signin": "GoogleWebComponents/google-signin#^1.0.0" 29 | }, 30 | "devDependencies": { 31 | "iron-component-page": "PolymerElements/iron-component-page#^1.0.2" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /google-analytics-loader.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 15 | 16 | 17 | 18 | 29 | 30 | 31 | 32 | 102 | -------------------------------------------------------------------------------- /google-analytics-dashboard.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 33 | 34 | 35 | 36 | 42 | 43 | 44 | 45 | 138 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Google Analytics Polymer Elements Demo 7 | 8 | 9 | 10 | 11 | 178 | 179 | 180 | 181 |
182 |

Google Analytics

183 |

Polymer Elements Demo

184 | 186 | 187 |
188 | 189 | 190 | 191 | 192 | 193 | 194 | 198 |

Site Traffic

199 |
200 | 201 | 205 |

Average Page Load Times

206 |
207 | 208 | 212 |

Users by Country

213 |
214 | 215 | 221 |

Pageviews by Browser

222 |
223 | 224 |
225 | 226 | 227 | 228 | -------------------------------------------------------------------------------- /google-analytics-date-selector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 28 | 29 | 30 | 31 | 51 | 52 | 72 | 73 | 74 | 75 | 219 | -------------------------------------------------------------------------------- /google-analytics-view-selector.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 26 | 27 | 28 | 29 | 49 | 50 | 83 | 84 | 85 | 86 | 292 | -------------------------------------------------------------------------------- /google-analytics-chart.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 26 | 27 | 28 | 29 | 52 | 53 | 80 | 81 | 82 | 83 | 441 | -------------------------------------------------------------------------------- /google-analytics-query.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 22 | 23 | 24 | 27 | 28 | 29 | 30 | 389 | --------------------------------------------------------------------------------