Google Chart API - is it possible to download the .js and work on it offline?
I would like to use the Google Chart API in one of my project.
Is it possible to download ONE JavaScript for it so that I can work offline?
I tried to download the script referred from the html page (jsapi)
and its code seems to load up other scripts:
google.loader.ServiceBase = 'https://www.google.com/uds';
google.loader.GoogleApisBase = 'https://ajax.googleapis.com/ajax';
...
Is there no way to get just one unified JavaScript?
google-visualization
add a comment |
I would like to use the Google Chart API in one of my project.
Is it possible to download ONE JavaScript for it so that I can work offline?
I tried to download the script referred from the html page (jsapi)
and its code seems to load up other scripts:
google.loader.ServiceBase = 'https://www.google.com/uds';
google.loader.GoogleApisBase = 'https://ajax.googleapis.com/ajax';
...
Is there no way to get just one unified JavaScript?
google-visualization
add a comment |
I would like to use the Google Chart API in one of my project.
Is it possible to download ONE JavaScript for it so that I can work offline?
I tried to download the script referred from the html page (jsapi)
and its code seems to load up other scripts:
google.loader.ServiceBase = 'https://www.google.com/uds';
google.loader.GoogleApisBase = 'https://ajax.googleapis.com/ajax';
...
Is there no way to get just one unified JavaScript?
google-visualization
I would like to use the Google Chart API in one of my project.
Is it possible to download ONE JavaScript for it so that I can work offline?
I tried to download the script referred from the html page (jsapi)
and its code seems to load up other scripts:
google.loader.ServiceBase = 'https://www.google.com/uds';
google.loader.GoogleApisBase = 'https://ajax.googleapis.com/ajax';
...
Is there no way to get just one unified JavaScript?
google-visualization
google-visualization
edited Jan 10 '17 at 17:06
Luke Girvin
10.9k85273
10.9k85273
asked May 25 '11 at 13:06
chackochacko
1,76472335
1,76472335
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Working offline with Google Chart API is not permitted, since it is against their TOS.
So even if I manage to download all the code and use it offline I would be breaking the law?
– Andrzej Rehmann
Mar 23 '14 at 19:49
4
Google is not as "open source" as they would have you believe. Some of their stuff is still proprietary.
– nonsensickle
Jun 8 '14 at 23:23
2
I came to same problem, As this question is too old, just for reference, here i am adding link of google FAQs... Answer: They don't provide Google Charts Offline.. developers.google.com/chart/interactive/faq Go to this question: Can I use charts offline?
– Kaushal Bhatt
Jul 11 '15 at 3:56
add a comment |
Download this package: https://www.dropbox.com/s/4cd7zbdvv2mlg8f/gstatic.zip?dl=0
After add this code in HTML:
<script type="text/javascript" src="gstatic/loader.js"></script>
This works for me.
It is to see version 44 of Google chart
Hey Alorse hope you are well. May you please tell me how can , I use the chart offline. May you please tell me which css or js and fonts , I need to add in my html page from the package that link you mentioned here and their order.
– Rupesh Arora
Oct 3 '16 at 11:18
The only file that must include is the loader.js, as I indicated in solving the issue, do not include any CSS or anything else.
– Alorse
Oct 4 '16 at 16:29
1
So does doing this violate Google terms and conditions or not?
– RobPio
Nov 28 '16 at 22:26
1
Just what we need, to be advising people to do things we are unsure of the legality of...
– Michael
Apr 7 '18 at 5:02
1
@RobPio Yes, using the Google charts offline, explicitly violates Google terms and condition. It is written in their TOS, here is a quote: "Sorry; our terms of service do not allow you to download and save or host the google.charts.load or google.visualization code. However, if you don't need the interactivity of Google Charts, you can screenshot the charts and use them as you wish.". Here is a link: developers.google.com/chart/interactive/faq#localdownload
– Jacob
Nov 13 '18 at 8:36
|
show 2 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f6124930%2fgoogle-chart-api-is-it-possible-to-download-the-js-and-work-on-it-offline%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Working offline with Google Chart API is not permitted, since it is against their TOS.
So even if I manage to download all the code and use it offline I would be breaking the law?
– Andrzej Rehmann
Mar 23 '14 at 19:49
4
Google is not as "open source" as they would have you believe. Some of their stuff is still proprietary.
– nonsensickle
Jun 8 '14 at 23:23
2
I came to same problem, As this question is too old, just for reference, here i am adding link of google FAQs... Answer: They don't provide Google Charts Offline.. developers.google.com/chart/interactive/faq Go to this question: Can I use charts offline?
– Kaushal Bhatt
Jul 11 '15 at 3:56
add a comment |
Working offline with Google Chart API is not permitted, since it is against their TOS.
So even if I manage to download all the code and use it offline I would be breaking the law?
– Andrzej Rehmann
Mar 23 '14 at 19:49
4
Google is not as "open source" as they would have you believe. Some of their stuff is still proprietary.
– nonsensickle
Jun 8 '14 at 23:23
2
I came to same problem, As this question is too old, just for reference, here i am adding link of google FAQs... Answer: They don't provide Google Charts Offline.. developers.google.com/chart/interactive/faq Go to this question: Can I use charts offline?
– Kaushal Bhatt
Jul 11 '15 at 3:56
add a comment |
Working offline with Google Chart API is not permitted, since it is against their TOS.
Working offline with Google Chart API is not permitted, since it is against their TOS.
answered Mar 14 '12 at 22:10
wtrevinowtrevino
4,7082119
4,7082119
So even if I manage to download all the code and use it offline I would be breaking the law?
– Andrzej Rehmann
Mar 23 '14 at 19:49
4
Google is not as "open source" as they would have you believe. Some of their stuff is still proprietary.
– nonsensickle
Jun 8 '14 at 23:23
2
I came to same problem, As this question is too old, just for reference, here i am adding link of google FAQs... Answer: They don't provide Google Charts Offline.. developers.google.com/chart/interactive/faq Go to this question: Can I use charts offline?
– Kaushal Bhatt
Jul 11 '15 at 3:56
add a comment |
So even if I manage to download all the code and use it offline I would be breaking the law?
– Andrzej Rehmann
Mar 23 '14 at 19:49
4
Google is not as "open source" as they would have you believe. Some of their stuff is still proprietary.
– nonsensickle
Jun 8 '14 at 23:23
2
I came to same problem, As this question is too old, just for reference, here i am adding link of google FAQs... Answer: They don't provide Google Charts Offline.. developers.google.com/chart/interactive/faq Go to this question: Can I use charts offline?
– Kaushal Bhatt
Jul 11 '15 at 3:56
So even if I manage to download all the code and use it offline I would be breaking the law?
– Andrzej Rehmann
Mar 23 '14 at 19:49
So even if I manage to download all the code and use it offline I would be breaking the law?
– Andrzej Rehmann
Mar 23 '14 at 19:49
4
4
Google is not as "open source" as they would have you believe. Some of their stuff is still proprietary.
– nonsensickle
Jun 8 '14 at 23:23
Google is not as "open source" as they would have you believe. Some of their stuff is still proprietary.
– nonsensickle
Jun 8 '14 at 23:23
2
2
I came to same problem, As this question is too old, just for reference, here i am adding link of google FAQs... Answer: They don't provide Google Charts Offline.. developers.google.com/chart/interactive/faq Go to this question: Can I use charts offline?
– Kaushal Bhatt
Jul 11 '15 at 3:56
I came to same problem, As this question is too old, just for reference, here i am adding link of google FAQs... Answer: They don't provide Google Charts Offline.. developers.google.com/chart/interactive/faq Go to this question: Can I use charts offline?
– Kaushal Bhatt
Jul 11 '15 at 3:56
add a comment |
Download this package: https://www.dropbox.com/s/4cd7zbdvv2mlg8f/gstatic.zip?dl=0
After add this code in HTML:
<script type="text/javascript" src="gstatic/loader.js"></script>
This works for me.
It is to see version 44 of Google chart
Hey Alorse hope you are well. May you please tell me how can , I use the chart offline. May you please tell me which css or js and fonts , I need to add in my html page from the package that link you mentioned here and their order.
– Rupesh Arora
Oct 3 '16 at 11:18
The only file that must include is the loader.js, as I indicated in solving the issue, do not include any CSS or anything else.
– Alorse
Oct 4 '16 at 16:29
1
So does doing this violate Google terms and conditions or not?
– RobPio
Nov 28 '16 at 22:26
1
Just what we need, to be advising people to do things we are unsure of the legality of...
– Michael
Apr 7 '18 at 5:02
1
@RobPio Yes, using the Google charts offline, explicitly violates Google terms and condition. It is written in their TOS, here is a quote: "Sorry; our terms of service do not allow you to download and save or host the google.charts.load or google.visualization code. However, if you don't need the interactivity of Google Charts, you can screenshot the charts and use them as you wish.". Here is a link: developers.google.com/chart/interactive/faq#localdownload
– Jacob
Nov 13 '18 at 8:36
|
show 2 more comments
Download this package: https://www.dropbox.com/s/4cd7zbdvv2mlg8f/gstatic.zip?dl=0
After add this code in HTML:
<script type="text/javascript" src="gstatic/loader.js"></script>
This works for me.
It is to see version 44 of Google chart
Hey Alorse hope you are well. May you please tell me how can , I use the chart offline. May you please tell me which css or js and fonts , I need to add in my html page from the package that link you mentioned here and their order.
– Rupesh Arora
Oct 3 '16 at 11:18
The only file that must include is the loader.js, as I indicated in solving the issue, do not include any CSS or anything else.
– Alorse
Oct 4 '16 at 16:29
1
So does doing this violate Google terms and conditions or not?
– RobPio
Nov 28 '16 at 22:26
1
Just what we need, to be advising people to do things we are unsure of the legality of...
– Michael
Apr 7 '18 at 5:02
1
@RobPio Yes, using the Google charts offline, explicitly violates Google terms and condition. It is written in their TOS, here is a quote: "Sorry; our terms of service do not allow you to download and save or host the google.charts.load or google.visualization code. However, if you don't need the interactivity of Google Charts, you can screenshot the charts and use them as you wish.". Here is a link: developers.google.com/chart/interactive/faq#localdownload
– Jacob
Nov 13 '18 at 8:36
|
show 2 more comments
Download this package: https://www.dropbox.com/s/4cd7zbdvv2mlg8f/gstatic.zip?dl=0
After add this code in HTML:
<script type="text/javascript" src="gstatic/loader.js"></script>
This works for me.
It is to see version 44 of Google chart
Download this package: https://www.dropbox.com/s/4cd7zbdvv2mlg8f/gstatic.zip?dl=0
After add this code in HTML:
<script type="text/javascript" src="gstatic/loader.js"></script>
This works for me.
It is to see version 44 of Google chart
edited May 9 '17 at 13:48
answered Apr 21 '16 at 1:19
AlorseAlorse
19628
19628
Hey Alorse hope you are well. May you please tell me how can , I use the chart offline. May you please tell me which css or js and fonts , I need to add in my html page from the package that link you mentioned here and their order.
– Rupesh Arora
Oct 3 '16 at 11:18
The only file that must include is the loader.js, as I indicated in solving the issue, do not include any CSS or anything else.
– Alorse
Oct 4 '16 at 16:29
1
So does doing this violate Google terms and conditions or not?
– RobPio
Nov 28 '16 at 22:26
1
Just what we need, to be advising people to do things we are unsure of the legality of...
– Michael
Apr 7 '18 at 5:02
1
@RobPio Yes, using the Google charts offline, explicitly violates Google terms and condition. It is written in their TOS, here is a quote: "Sorry; our terms of service do not allow you to download and save or host the google.charts.load or google.visualization code. However, if you don't need the interactivity of Google Charts, you can screenshot the charts and use them as you wish.". Here is a link: developers.google.com/chart/interactive/faq#localdownload
– Jacob
Nov 13 '18 at 8:36
|
show 2 more comments
Hey Alorse hope you are well. May you please tell me how can , I use the chart offline. May you please tell me which css or js and fonts , I need to add in my html page from the package that link you mentioned here and their order.
– Rupesh Arora
Oct 3 '16 at 11:18
The only file that must include is the loader.js, as I indicated in solving the issue, do not include any CSS or anything else.
– Alorse
Oct 4 '16 at 16:29
1
So does doing this violate Google terms and conditions or not?
– RobPio
Nov 28 '16 at 22:26
1
Just what we need, to be advising people to do things we are unsure of the legality of...
– Michael
Apr 7 '18 at 5:02
1
@RobPio Yes, using the Google charts offline, explicitly violates Google terms and condition. It is written in their TOS, here is a quote: "Sorry; our terms of service do not allow you to download and save or host the google.charts.load or google.visualization code. However, if you don't need the interactivity of Google Charts, you can screenshot the charts and use them as you wish.". Here is a link: developers.google.com/chart/interactive/faq#localdownload
– Jacob
Nov 13 '18 at 8:36
Hey Alorse hope you are well. May you please tell me how can , I use the chart offline. May you please tell me which css or js and fonts , I need to add in my html page from the package that link you mentioned here and their order.
– Rupesh Arora
Oct 3 '16 at 11:18
Hey Alorse hope you are well. May you please tell me how can , I use the chart offline. May you please tell me which css or js and fonts , I need to add in my html page from the package that link you mentioned here and their order.
– Rupesh Arora
Oct 3 '16 at 11:18
The only file that must include is the loader.js, as I indicated in solving the issue, do not include any CSS or anything else.
– Alorse
Oct 4 '16 at 16:29
The only file that must include is the loader.js, as I indicated in solving the issue, do not include any CSS or anything else.
– Alorse
Oct 4 '16 at 16:29
1
1
So does doing this violate Google terms and conditions or not?
– RobPio
Nov 28 '16 at 22:26
So does doing this violate Google terms and conditions or not?
– RobPio
Nov 28 '16 at 22:26
1
1
Just what we need, to be advising people to do things we are unsure of the legality of...
– Michael
Apr 7 '18 at 5:02
Just what we need, to be advising people to do things we are unsure of the legality of...
– Michael
Apr 7 '18 at 5:02
1
1
@RobPio Yes, using the Google charts offline, explicitly violates Google terms and condition. It is written in their TOS, here is a quote: "Sorry; our terms of service do not allow you to download and save or host the google.charts.load or google.visualization code. However, if you don't need the interactivity of Google Charts, you can screenshot the charts and use them as you wish.". Here is a link: developers.google.com/chart/interactive/faq#localdownload
– Jacob
Nov 13 '18 at 8:36
@RobPio Yes, using the Google charts offline, explicitly violates Google terms and condition. It is written in their TOS, here is a quote: "Sorry; our terms of service do not allow you to download and save or host the google.charts.load or google.visualization code. However, if you don't need the interactivity of Google Charts, you can screenshot the charts and use them as you wish.". Here is a link: developers.google.com/chart/interactive/faq#localdownload
– Jacob
Nov 13 '18 at 8:36
|
show 2 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f6124930%2fgoogle-chart-api-is-it-possible-to-download-the-js-and-work-on-it-offline%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown