- 谷歌图表教程
- 谷歌图表 - 主页
- Google 图表 - 概述
- Google 图表 - 环境设置
- 配置语法
- Google 图表 - 面积图
- Google Charts - 条形图
- Google 图表 - 气泡图
- Google 图表 - 日历图表
- Google 图表 - 烛台图
- Google 图表 - 柱形图
- Google 图表 - 组合图表
- Google Charts - 直方图
- Google 图表 - 折线图
- Google 图表 - 地图
- Google 图表 - 组织结构图
- Google 图表 - 饼图
- 谷歌图表 - 桑基图表
- Google 图表 - 散点图
- 阶梯面积图
- Google 图表 - 表格图表
- Google Charts - 时间线图表
- Google 图表 - 树形图图表
- Google 图表 - 趋势线图表
- 谷歌图表有用的资源
- Google 图表 - 快速指南
- Google 图表 - 有用的资源
- 谷歌图表 - 讨论
Google 图表 - 环境设置
在本章中,我们将讨论如何设置 Google Charts 库以用于 Web 应用程序开发。
安装谷歌图表
有两种使用 Google 图表的方法。
下载- 从https://developers.google.com/chart下载到本地并使用它。
CDN 访问- 您还可以访问 CDN。CDN 将使您能够访问世界各地的区域数据中心,在本例中为 Google Chart 托管https://www.gstatic.com/charts。
使用下载的 Google 图表
使用以下脚本将 googlecharts JavaScript 文件包含在 HTML 页面中 -
<head> <script src = "/googlecharts/loader.js"></script> </head>
使用CDN
在本教程中,我们使用 Google Chart 库的 CDN 版本。
使用以下脚本将 Google Chart JavaScript 文件包含在 HTML 页面中 -
<head> <script src = "https://www.gstatic.com/charts/loader.js"></script> </head>