Google Charts Tutorial
Google Charts Useful Resources
Selected Reading
- Google Charts - Trendline Charts
- Google Charts - TreeMap Chart
- Google Charts - Timeline Charts
- Google Charts - Table Chart
- Stepped Area Charts
- Google Charts - Scatter Charts
- Google Charts - Sankey Charts
- Google Charts - Pie Charts
- Google Charts - Organization Chart
- Google Charts - Maps
- Google Charts - Line Charts
- Google Charts - Histogram Charts
- Google Charts - Combination Chart
- Google Charts - Column Charts
- Google Charts - Candlestick Charts
- Google Charts - Calendar Charts
- Google Charts - Bubble Charts
- Google Charts - Bar Charts
- Google Charts - Area Charts
- Configuration Syntax
- Google Charts - Environment Setup
- Google Charts - Overview
- Google Charts - Home
Google Charts Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Google Charts - Environment Setup
Google Charts - Environment Setup
In this chapter we will discuss about how to set up Google Charts pbrary to be used in web apppcation development.
Install Google Charts
There are two ways to use Google Charts.
Download − Download it locally from
and use it.CDN access − You also have access to a CDN. The CDN will give you access around the world to regional data centers that in this case, Google Chart host https://www.gstatic.com/charts.
Using Downloaded Google Chart
Include the googlecharts JavaScript file in the HTML page using following script −
<head> <script src = "/googlecharts/loader.js"></script> </head>
Using CDN
We are using the CDN versions of the Google Chart pbrary throughout this tutorial.
Include the Google Chart JavaScript file in the HTML page using following script −
<head> <script src = "https://www.gstatic.com/charts/loader.js"></script> </head>Advertisements