9

I am using Google Chart in one my Program, The program will run locally and have no internet access to use Google Charts. Can you please tell me where can i download the Library, I searched on net but failed to find out any possible way to download it?

Thanks

user3480644
  • 577
  • 4
  • 8
  • 23
  • 7
    The Visualization API is not available offline. Mirroring/local hosting is actually explicitly forbidden by the [Terms of Service](https://developers.google.com/chart/terms). – asgallant May 22 '14 at 16:58

1 Answers1

4

You can download the google chart API from the following link:

https://www.google.com/jsapi

Just hit the URL on your browser and save it by using ctrl+S. And include it in your project.

For more information see here for offline chart API.

EDITED:

this library used two online library also so you need to download then and change the path:

google.loader.ServiceBase = 'https://www.google.com/uds';
google.loader.GoogleApisBase = 'https://ajax.googleapis.com/ajax';

In the above line you can see those libraries.

Code Lღver
  • 15,573
  • 16
  • 56
  • 75