How to download Google chart API?

I use Google Chart in one of my programs, the program will work locally and will not have Internet access to use Google charts. Could you tell me where I can download the library, I searched on the net, but could not find any possible way to download it?

thanks

+7
html php graph google-visualization phpgraphlib
source share
1 answer

You can download the Google Chart API from the following link:

https://www.google.com/jsapi

Just click the URL of your browser and save it using ctrl + S. And include it in your project.

See here for a standalone graphical API for more information.

Edition:

This library used two online libraries, so you need to download and change the path:

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

In the line above you can see these libraries.

+3
source share

All Articles