[visualization-api] Google Charts 52 on Microsoft Edge

2024-06-07 Thread 'Seann Herdejurgen' via Google Visualization API
I was doing some testing today and discovered that Google Charts 52 won't 
load on Microsoft Edge on Windows. When I attempt to load Google Charts in 
DevTools console I get:

> google.charts.load('52',{packages:['corechart']})
Promise {}
loader.js:146  Uncaught (in promise) Error: Bad version: 52
at loader.js:146:238

Google Charts 52 works fine on Microsoft Edge on iPhone.

Regards,
-Seann

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/8b61b1a2-9e5d-4a88-a3f9-ef97e8d89463n%40googlegroups.com.


[visualization-api] Google charts as Notion Embed

2024-04-28 Thread Michaël V . Dandrieux
Hi ! I have a perfectly functional Google chart html page and I'm trying to 
have it display as an embed in Notion but it seems that the data is not 
pulled. The console says it blocked some cookies.

I use google.visualization.BarChart()

Had anyone embedded Google charts in Notion ?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/51eefd55-aae9-45ca-9680-6ad4903664d3n%40googlegroups.com.


[visualization-api] Google Charts has 404 error

2024-04-17 Thread Gsuitenobel ITHelpdesk
Dear Google

We found that Google Charts has error when loading the qrcode.

The links below is unable to access since 10 April 2024
1)https://chart.googleapis.com/
2)https://chart.googleapis.com/chart?chs=60x60&cht=qr&chl=NISH3994918918

Could you help to check on this? 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/13a734a5-88c9-4e1c-ade8-0c97b6de4bc2n%40googlegroups.com.


[visualization-api] Google charts error 404

2024-04-09 Thread Tiago Antônio Borba Oliveira
We use the Google Charts API in our systems for generating QR codes 
(https://chart.googleapis.com/chart?chs=200x200&cht=qr&chl=&choe=UTF-8).
 
However, as of today's date, 09/04/2024, users have started reporting that 
the QR code is not loading, and upon verification, it returns a 404 error. 
Does anyone know if Google has made any statement regarding this?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/e2834de8-42da-4566-bb1d-0cfc1252b481n%40googlegroups.com.


[visualization-api] Google charts widget in mendix - issue is Table has no columns

2024-03-22 Thread Deee Saaayi
i have downloaded the googlr chart widget for mrndix it is asking me to 
provide the json i have 2 values active and inactive user what ever the 
value i give its shows table has no columns how can i put it properly

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/8686b0f0-de83-4b12-8fec-525b0aab38f1n%40googlegroups.com.


[visualization-api] Google Charts not displaying in DIV

2023-12-14 Thread Regain 2AControl
I have just started using google charts and it works great when a chart is 
placed in a div on a specific static page, however, I am having an issue 
with pages within pages loaded with javascript fetch into a panel(div).  
Example, index.php chart works fine.  Chart on rightpanel.php fetched into 
a div in index.php, the chart does not load.  Any thoughts?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/30a6f2c8-aa68-4b23-8a7c-36ea03243b99n%40googlegroups.com.


[visualization-api] Google Charts with CSV file

2023-04-27 Thread Joe Davies


I have the following html which works fine in producing a stacked column 
chart with Google Charts. I want to replace the static data in the html 
with an external csv file and am unable to get it to work.

Static Example (This works fine)

  
https://www.gstatic.com/charts/loader.js";>

  google.charts.load('current', {'packages':['corechart']});
  google.charts.setOnLoadCallback(drawChart);

  function drawChart() {
var data = google.visualization.arrayToDataTable([
  ['Day', 'Status A', 'Status B', 'Status C'],
  ['Monday', 10, 5, 3],
  ['Tuesday', 8, 2, 6],
  ['Wednesday', 6, 4, 10],
  ['Thursday', 12, 8, 4],
  ['Friday', 4, 12, 2],
  ['Saturday', 6, 4, 8],
  ['Sunday', 10, 6, 4]
]);

var options = {
  title: 'Status Values by Day',
  isStacked: true
};

var chart = new 
google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
  }

  
  

  


I have replaced the var data block with the following block of code to 
reference a 'data.csv' file.

var data = new google.visualization.DataTable();
data.addColumn('string', 'Day');
data.addColumn('number', 'Status A');
data.addColumn('number', 'Status B');
data.addColumn('number', 'Status C');
data.load('data.csv', {'header': true, 'delimiter': ','});

The 'data.csv' file is formed as follows and I have it in the same folder 
as the html file.
Day,Status A,Status B,Status C
Monday,10,5,3
Tuesday,8,2,6
Wednesday,6,4,10
Thursday,12,8,4
Friday,4,12,2
Saturday,6,4,8
Sunday,10,6,4

When I open the html file it is blank, I'd like to know where I have gone 
wrong. Thank you in advance for any help or pointers you can give me.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/244b1d3b-7c0b-48e2-b1ac-9cf74462144dn%40googlegroups.com.


[visualization-api] Google Charts with CSV file

2023-04-27 Thread Joe Davies


I have the following html which works fine in producing a stacked column 
chart with Google Charts. I want to replace the static data in the html 
with an external csv file and am unable to get it to work.

Static Example (This works fine)


  
https://www.gstatic.com/charts/loader.js";>

  google.charts.load('current', {'packages':['corechart']});
  google.charts.setOnLoadCallback(drawChart);

  function drawChart() {
var data = google.visualization.arrayToDataTable([
  ['Day', 'Status A', 'Status B', 'Status C'],
  ['Monday', 10, 5, 3],
  ['Tuesday', 8, 2, 6],
  ['Wednesday', 6, 4, 10],
  ['Thursday', 12, 8, 4],
  ['Friday', 4, 12, 2],
  ['Saturday', 6, 4, 8],
  ['Sunday', 10, 6, 4]
]);

var options = {
  title: 'Status Values by Day',
  isStacked: true
};

var chart = new 
google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
  }

  
  

  


I have replaced the var data block with the following block of code to 
reference a 'data.csv' file.

var data = new google.visualization.DataTable();
data.addColumn('string', 'Day');
data.addColumn('number', 'Status A');
data.addColumn('number', 'Status B');
data.addColumn('number', 'Status C');
data.load('data.csv', {'header': true, 'delimiter': ','});

The 'data.csv' file is formed as follows and I have it in the same folder 
as the html file.

Day,Status A,Status B,Status C
Monday,10,5,3
Tuesday,8,2,6
Wednesday,6,4,10
Thursday,12,8,4
Friday,4,12,2
Saturday,6,4,8
Sunday,10,6,4

When I now open the html file it is blank, I'd like to know where I have 
gone wrong. Thank you in advance for any help or pointers you can give me.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/13c9a850-4b63-4b85-b74a-e546b247b37cn%40googlegroups.com.


Re: [visualization-api] Google charts and typescript

2023-02-23 Thread Nikos Katsikanis
the charts work fine, but it's just not typed. I managed to defeat the tsc 
error with this hack

declare global {
interface Window {
google: any;
}
}

so there are no problems at runtime

On Tuesday, February 21, 2023 at 5:46:56 PM UTC Daniel LaLiberte wrote:

> OK, I would like to find a workaround for you, while also figuring out 
> what exactly is going wrong.  I'll need you to do some experimenting, or if 
> you can give me a link to an example that shows the problem you are 
> experiencing, especially a simplified example using jsfiddle or something 
> similar, that would be great.
>
> Is it possible to check whether the code does get executed, but only after 
> your onload handler is called? 
>
> Could you try using addEventListener rather than the onload mechanism?
>
> Can you try adding a static loading of the loader, just to make sure that 
> use case still works?
>
>
> On Tue, Feb 21, 2023 at 12:12 PM Nikos Katsikanis  
> wrote:
>
>> Thanks for your quick response, we manage this loading, so it only 
>> happens once; as we have dynamic routes, we want to load it on only some 
>> pages.
>>
>> On Tuesday, February 21, 2023 at 4:23:39 PM UTC Daniel LaLiberte wrote:
>>
>>> The loader has been updated for the 'upcoming' release of v52, but it 
>>> should only have added access to the new version.   There have been other 
>>> refactoring changes that conceivably could have affected the code, but I 
>>> see how it could have lost the definition of the global 'google'.  
>>> Moreover, I am not sure I can easily revert this change of the loader, 
>>> since I would have to return to the compilation environment from a couple 
>>> years ago. 
>>>
>>> The way you are loading the loader, using a constructed async script 
>>> element appended to the body, is significantly different from the typical, 
>>> more static loading via a script tag in the document head.  I'm wondering 
>>> if you are using this pattern multiple times in the document, perhaps 
>>> unintentionally.
>>>
>>>
>>> On Tue, Feb 21, 2023 at 6:55 AM Nikos Katsikanis  
>>> wrote:
>>>
 I have this code, with type `/// >>> types="google.visualization" />`
 but google is not recognised:

 [image: Screenshot 2023-02-21 at 11.55.21.png]

 -- 
 You received this message because you are subscribed to the Google 
 Groups "Google Visualization API" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to google-visualizati...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-visualization-api/ee101963-b123-4cbc-90ca-a59039c3f5f3n%40googlegroups.com
  
 
 .

>>>
>>>
>>> -- 
>>>
>>> • Daniel LaLiberte
>>>
>>>  • SWE
>>>
>>>  • Cambridge MA
>>>
>>>  • dlalibe...@google.com
>>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualizati...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/63a0095c-7a2d-4087-aee3-e40e99f1874dn%40googlegroups.com
>>  
>> 
>> .
>>
>
>
> -- 
>
> • Daniel LaLiberte
>
>  • SWE
>
>  • Cambridge MA
>
>  • dlalibe...@google.com
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/82575c4a-e7b8-4d89-8415-d6442e01c009n%40googlegroups.com.


Re: [visualization-api] Google charts and typescript

2023-02-21 Thread 'Daniel LaLiberte' via Google Visualization API
OK, I would like to find a workaround for you, while also figuring out what
exactly is going wrong.  I'll need you to do some experimenting, or if you
can give me a link to an example that shows the problem you are
experiencing, especially a simplified example using jsfiddle or something
similar, that would be great.

Is it possible to check whether the code does get executed, but only after
your onload handler is called?

Could you try using addEventListener rather than the onload mechanism?

Can you try adding a static loading of the loader, just to make sure that
use case still works?


On Tue, Feb 21, 2023 at 12:12 PM Nikos Katsikanis 
wrote:

> Thanks for your quick response, we manage this loading, so it only happens
> once; as we have dynamic routes, we want to load it on only some pages.
>
> On Tuesday, February 21, 2023 at 4:23:39 PM UTC Daniel LaLiberte wrote:
>
>> The loader has been updated for the 'upcoming' release of v52, but it
>> should only have added access to the new version.   There have been other
>> refactoring changes that conceivably could have affected the code, but I
>> see how it could have lost the definition of the global 'google'.
>> Moreover, I am not sure I can easily revert this change of the loader,
>> since I would have to return to the compilation environment from a couple
>> years ago.
>>
>> The way you are loading the loader, using a constructed async script
>> element appended to the body, is significantly different from the typical,
>> more static loading via a script tag in the document head.  I'm wondering
>> if you are using this pattern multiple times in the document, perhaps
>> unintentionally.
>>
>>
>> On Tue, Feb 21, 2023 at 6:55 AM Nikos Katsikanis 
>> wrote:
>>
>>> I have this code, with type `/// >> />`
>>> but google is not recognised:
>>>
>>> [image: Screenshot 2023-02-21 at 11.55.21.png]
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google Visualization API" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-visualizati...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-visualization-api/ee101963-b123-4cbc-90ca-a59039c3f5f3n%40googlegroups.com
>>> 
>>> .
>>>
>>
>>
>> --
>>
>> • Daniel LaLiberte
>>
>>  • SWE
>>
>>  • Cambridge MA
>>
>>  • dlalibe...@google.com
>>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/63a0095c-7a2d-4087-aee3-e40e99f1874dn%40googlegroups.com
> 
> .
>


-- 

• Daniel LaLiberte

 • SWE

 • Cambridge MA

 • dlalibe...@google.com 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNgLypVXUMAW1CwLm3Crf9UpMpvopa7Cojh5M-XEcN7TA%40mail.gmail.com.


Re: [visualization-api] Google charts and typescript

2023-02-21 Thread Nikos Katsikanis
Thanks for your quick response, we manage this loading, so it only happens 
once; as we have dynamic routes, we want to load it on only some pages.

On Tuesday, February 21, 2023 at 4:23:39 PM UTC Daniel LaLiberte wrote:

> The loader has been updated for the 'upcoming' release of v52, but it 
> should only have added access to the new version.   There have been other 
> refactoring changes that conceivably could have affected the code, but I 
> see how it could have lost the definition of the global 'google'.  
> Moreover, I am not sure I can easily revert this change of the loader, 
> since I would have to return to the compilation environment from a couple 
> years ago. 
>
> The way you are loading the loader, using a constructed async script 
> element appended to the body, is significantly different from the typical, 
> more static loading via a script tag in the document head.  I'm wondering 
> if you are using this pattern multiple times in the document, perhaps 
> unintentionally.
>
>
> On Tue, Feb 21, 2023 at 6:55 AM Nikos Katsikanis  
> wrote:
>
>> I have this code, with type `/// > />`
>> but google is not recognised:
>>
>> [image: Screenshot 2023-02-21 at 11.55.21.png]
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualizati...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/ee101963-b123-4cbc-90ca-a59039c3f5f3n%40googlegroups.com
>>  
>> 
>> .
>>
>
>
> -- 
>
> • Daniel LaLiberte
>
>  • SWE
>
>  • Cambridge MA
>
>  • dlalibe...@google.com
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/63a0095c-7a2d-4087-aee3-e40e99f1874dn%40googlegroups.com.


[visualization-api] Google Charts New Release Candidate: V52, Feb 20, 2023

2023-02-20 Thread 'Daniel LaLiberte' via Google Visualization API
Google Charts version '52' is now available.  You can use this upcoming
version by loading 'upcoming'.  Please test the new features and let us
know if you experience any issues.



  google.charts.load('upcoming',

   {packages: ['corechart']});



This release primarily consists of a large number of refactoring and
cleanup changes.  All code has been migrated to ES6, and a substantial
fraction has been migrated to TypeScript. We are still moving forward
toward open-sourcing the Google Charts code, but many more internal changes
are required before that can be accomplished.


Anticipated production release date: March 20, 2023

At this time, the 'current' version is still '51'.

On the release date, loading either 'current' or 'upcoming' will load '52'.

Note that this is a much longer release cycle compared to previous
releases, due to the large number of internal changes.



   -

   GeoChart
   -

  Updated geochartVersion to 11, and regioncoderVersion to 1.
  -

   Dygraph charts
   -

  Gantt, Timeline, and the Material charts: Bar, Line, Scatter
  -

  No longer loads the Dygraph library dynamically since it is compiled
  in.
  -

   Table
   -

  Fix highlighting of current page number for more than 11 pages.
  -

   OrgChart
   -

  Add ‘compactRows’ option. Default is false.
  -

  Uses the  Reingold-Tilford 
  algorithm for layered trees. Its main advantage is a more
effective use of
  horizontal space by placing subtrees close together as long as
nodes in the
  same layer do not overlap.


-- 

• Daniel LaLiberte

 • SWE

 • Cambridge MA

 • dlalibe...@google.com 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJN%2BcytpVfPxYba729RF1zH%2Bgc%3DFbm%3DHXgrXSprWCFK%2Baw%40mail.gmail.com.


[visualization-api] Google Charts - Column Chart

2022-10-19 Thread 'Алина Окользина' via Google Visualization API
Hey! Tell me, please, is it possible to make intervals between columns in 
Google charts? I'm attaching the screenshot and code. (Example in 1 column)



Create 3D Pie Charts with JavaSript and Google Charts 
API
https://www.google.com/jsapi";>

google.load("visualization", "1", {packages:["corechart"]});
google.charts.load('current', {
  callback: drawChart,
  packages:['corechart']
});

function drawChart() {
  
var data = google.visualization.arrayToDataTable([
  ['Probality', 'Sum'],
  ['0  .  0.1',  22],
  ['0.2 ',  24],
  ['0.3 ',  33],
  ['0.4 ',  19],
  [4,  17],
  [5,  22],
  [6,  17],
  [7,  16],
  [8,  11],
  [9,  358]
  
  ]);


  var numberPattern = '##,##,##0';

  var formatNumber = new google.visualization.NumberFormat({
pattern: numberPattern
  });
  formatNumber.format(data, 1);

  var view = new google.visualization.DataView(data);
  view.setColumns([0, 1, {
calc: 'stringify',
sourceColumn: 1,
type: 'string',
role: 'annotation'
  }]);

  var options = {

annotations: {
  alwaysOutside: true
},
colors: ['#00BCD4'],
height: 550,
bar: {groupWidth: '98%'},
vAxis: { gridlines: { count: 4 }

}
  };

  var chart = new 
google.visualization.ColumnChart(document.getElementById('chart'));
  chart.draw(view, options);
}







[image: 2022-10-19_16-50-52.png]

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/49b91192-239b-44f6-a062-7bf14a897585n%40googlegroups.com.


[visualization-api] Google Charts API

2022-10-11 Thread Razmik Vardanyan
Hi everyone. I have a one question. Does Google Charts has an API for 
drawing charts and response me with html?
Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/28863223-3128-4117-ad67-d8617a996fean%40googlegroups.com.


[visualization-api] Google Charts API - QR Code

2022-06-20 Thread Eric Fammaldo
Hi Google Teams,

I Need some confirmation and update about Google Charts QR Code.

if I look at this documentation below here:
QR Codes  |  Infographics  |  Google Developers 


It state that This API is deprecated, may I know where I can find the 
latest API?
and how long until this QR Code API completely removed?

Is QR Code free to use? can teams share me with the document limitation how 
many request I can call using the API QR Code if its free? if not maybe 
share me with the pricing doc.
I really looking forward for the help :) 

Best Regards.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/88b5e8ca-acb1-4ead-8f97-d1b8fff200b5n%40googlegroups.com.


Re: [visualization-api] Google Charts License Type

2022-06-09 Thread 'Daniel LaLiberte' via Google Visualization API
Google Charts API is still proprietary at this time.  You can only use the
binary form of the library, and you can only do that by dynamically loading
the code from www.gstatic.com.

We are, however, working on open sourcing a subset of the code.

On Thu, Jun 9, 2022 at 12:22 PM Efrain Rosas  wrote:

> Hello everyone,
> I would like to know what type of license does Google Charts API have? Is
> it MIT / GPL / GNU?
>
> Thanks
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/1ffe4bc8-73eb-4a91-864a-842dc3005444n%40googlegroups.com
> 
> .
>


-- 

• Daniel LaLiberte

 • SWE

 • Cambridge MA

 • dlalibe...@google.com 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNhdmiZsLvA7QdQqXcrE_3kUHnFNnMvktP6h1h7QSTD8w%40mail.gmail.com.


[visualization-api] Google Charts License Type

2022-06-09 Thread Efrain Rosas
Hello everyone,
I would like to know what type of license does Google Charts API have? Is 
it MIT / GPL / GNU?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/1ffe4bc8-73eb-4a91-864a-842dc3005444n%40googlegroups.com.


[visualization-api] Google Charts Sankey Chart and ArcGIS js compatibility issues

2022-05-17 Thread Bryant R
I'm having an issues with the Google Charts Sankey Modules which relies on 
the d3.js as stated on their documentation page 
.

I'm also using and ArcGIS js and the error occurs when I load both scripts, 
the google charts loader script and the ArcGIS script I get a "d3.sankey is 
not a function" message.

I setup a codepen which replicates this issue on: 
https://codepen.io/bryant-essense/pen/YzeZrOp.

I also started a stackoverflow question with more of a detailed explanation 
on it: 
https://stackoverflow.com/questions/72279301/arcgis-js-and-google-charts-js-not-working-together
.

Any advice or help with this matter would be greatly appreciated as I've 
been scratching my head with this bug for a while now.

Sincerely,
Bryant

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/005818b3-0a8d-4817-8264-592553056481n%40googlegroups.com.


Re: [visualization-api] Google charts different result in development and production

2022-04-26 Thread dahliar ananda
one thing i dont get the reason behind it is why it previously worked in 
development, but not in production

On Tuesday, April 26, 2022 at 5:25:55 PM UTC+7 dahliar ananda wrote:

> case closed.
> Solved by parse the string into integer value.
>
> temp.push(parseInt(stocks[i].jumlahSpecies));
>
> Dahliar Ananda, S.T., M.T.
> --
> Program Studi Rekayasa Perangkat Lunak
> Fakultas Ilmu Terapan
> Universitas Telkom
> phone : 08121446627
> email  : dahliar...@gmail.com, ana...@telkomuniversity.ac.id
>
>
> On Tue, Apr 26, 2022 at 3:35 PM dahliar ananda  
> wrote:
>
>> Dear all,
>> im getting this different results in my development (localhost) and 
>> production server. It works perfectly in dev, and no error at all in 
>> development tools. The configuration is same in both env (or maybe im 
>> missing something from my configuration). my dev using php 7.4.19 and in my 
>> production using 7.4.
>> thanks for your help.
>>
>> [image: Screen Shot 2022-04-26 at 15.31.30.png][image: Screen Shot 
>> 2022-04-26 at 15.31.15.png]
>>
>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "Google Visualization API" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/google-visualization-api/lKQXfeOBOo0/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> google-visualizati...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/43d18a76-90c7-4a27-8081-431c9493e0aan%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/03ad6068-f954-48a7-b44c-f3e1ca92f470n%40googlegroups.com.


[visualization-api] Google Charts connection with Google Sheets

2022-01-18 Thread Delsuc Evangelista
Hi, 
I created a spreadsheet in Google Sheets and shared it with everyone, 
however, I can't connect to it through Google Charts! Below the link: 
https://docs.google.com/spreadsheets/d/1td3qHfDgqf8E0pxu2QvmGdLBvCdBDkcU2BL5N4_IV1U/edit?usp=sharing
 
I would appreciate some sample code with this link. Thanks 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/7288c052-ea43-400b-af9c-6dc1e6b67c21n%40googlegroups.com.


[visualization-api] Google Charts 'upcoming' release of v51

2021-06-18 Thread 'Daniel LaLiberte' via Google Visualization API
Google Charts version '51' is now available.  You can use this upcoming
version by loading 'upcoming'.  Please test the new features and let us
know if you experience any issues.


  google.charts.load('*upcoming*',

{packages: ['corechart']});



*Anticipated production release date*: June 22, 2021
At this time, the 'current' version is still '50'.
On the release date, loading either 'current' or 'upcoming' will load '51'.

Note that this is a much shorter release cycle compared to previous
releases.

This release includes many more internal refactorings and migrations to ES6
and TypeScript, in preparation for the first phase of open-sourcing Google
Charts.

   - VegaChart
   

  - Restore the previous behavior regarding the default or explicit
  sizing of charts via the options for 'height', 'width', 'padding', and
  'autosize'.
  - Vega is updated to v5.20.1
  
  - Vega-lite is updated to v5.1.0
  
  - Vega-embed is updated to v6.17.0
  
   - Timeline
   

  - Add the hidden accessibility table to Timeline.
  - New alternatingRowStyle option to enable setting the background
  style of alternating rows to lighter and darker colors. Default is true.
   - Query
   

  - Allow trailing ';' to be missing on Query responses.


-- 

• Daniel LaLiberte

 • SWE

 • Cambridge MA

 • dlalibe...@google.com 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJMb5AX-TBMEgBCRE2_%3D6utymrVq4zWdCkcYsMD_YRL2OA%40mail.gmail.com.


[visualization-api] GOOGLE CHARTS

2021-04-22 Thread UTKARSH VEDPATHAK
How to solve the renderer issues in pie chart.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/2f79ba34-9279-483b-956d-81fc386c2870n%40googlegroups.com.


[visualization-api] Google Charts 'upcoming' release of v50

2021-03-31 Thread 'Daniel LaLiberte' via Google Visualization API
Google Charts version '50' is now available.  As before, you can use this
upcoming version by loading 'upcoming'.  Please test the new features and
let us know if you experience any issues.


  google.charts.load('*upcoming*',

{packages: ['corechart']});



*Anticipated production release date*: April 11, 2021
At this time, the 'current' version is still '49'.
On the release date, loading either 'current' or 'upcoming' will load '50'.

This release includes many internal refactorings and mirations to ES6 and
TypeScript, in preparation for the first phase of open-sourcing Google
Charts.

   - VegaChart
   
  - Added support for Vega-lite, and Vega-embed.
   - Treemap
   
  - New enableHighlight option enables highlighting of elements. How
  the highlighting is triggered should be configured with eventsConfig. (
  highlightOnMouseOver is deprecated)
  - New eventsConfig option for configuring how events trigger Treemap
  interactions. The default configuration is:

  {
highlight: ['mouseover'],
unhighlight: ['mouseout'],
rollup: ['contextmenu'], // right-click
drilldown: ['click']
  }

  - New events: 'highlight', 'unhighlight', 'drilldown'
   - Query
  - Workaround lack of support in older versions of spreadsheets for
  the new more secure JSON response handling (which resulted in
CORS errors).




-- 

• Daniel LaLiberte

 • SWE

 • Cambridge MA

 • dlalibe...@google.com 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNjw%3DjN9hQaZLJuTB-5fVej-MJgjkjCqWxuXnW88dHXYA%40mail.gmail.com.


Re: [visualization-api] Google Charts -- radar -- image in area?

2020-12-12 Thread John Freebury
That does look like an interesting challenge indeed.  I'll post my progress 
here. 
Much Thanks! 

On Saturday, 12 December 2020 at 20:14:25 UTC-7 Daniel LaLiberte wrote:

> Hi John,
>
> There is a potential solution involving use of blends to implement 
> masking.  See the issue that started it:
> https://github.com/vega/vega/issues/2311
>
> The change that added blends: 
> https://github.com/vega/vega/pull/2422
>
> The mark documentation - look for the blend color property.
> https://vega.github.io/vega-lite/docs/mark.html
>
> How css blend modes might be used to implement masking of an image.
> https://codepen.io/jonnyscholes/post/css-blend-modes
>
> Also, how to draw an image in Vega:
> https://vega.github.io/vega/docs/marks/image/
> https://css-tricks.com/almanac/properties/m/mask-image/
> ...
>
> There is still a lot to figure out to put all this together, but it seems 
> possible.
>
>
> On Sat, Dec 12, 2020 at 9:03 PM John Freebury  wrote:
>
>> Hi All ,
>> I am creating a radar chart and need it to have an image in the area of 
>> the chart, replacing a solid fill. 
>> Looking at the Radar chart script here -- 
>> https://developers.google.com/chart/interactive/docs/gallery/vegachart#radar-chart-example
>>  
>> -- I wonder whether it is possible. Can the "marks" properties be adjusted 
>> to insert an image, perhaps working with the transparency?   Attached is a 
>> sample. 
>>
>> Here's a snippet from that script: 
>> ...
>> "marks": [
>>   {
>> "type": "group",
>> "name": "categories",
>> "zindex": 1,
>> "from": {
>>   "facet": {"data": "table", "name": "facet", "groupby": 
>> ["category"]}
>> },
>> "marks": [
>>   {
>> "type": "line",
>> "name": "category-line",
>> "from": {"data": "facet"},
>> "encode": {
>>   "enter": {
>> "interpolate": {"value": "linear-closed"},
>> "x": {"signal": "scale('radial', datum.value) * 
>> cos(scale('angular', datum.key))"},
>> "y": {"signal": "scale('radial', datum.value) * 
>> sin(scale('angular', datum.key))"},
>> "stroke": {"value": color},
>> "strokeWidth": {"value": 1.5},
>>  
>> *   "fill": {"value": color},
>> "fillOpacity": {"value": 0.1}*
>>   }
>> ...
>>
>> Any help would be most welcome.  Thanks! 
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualizati...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/0f5df060-a38f-41a9-bb2f-1f3bc726507fn%40googlegroups.com
>>  
>> 
>> .
>>
>
>
> -- 
> Daniel LaLiberte 
> dlalibe...@google.com   Cambridge MA
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/d4dd73fd-e9f6-471a-a567-41a25ea9e191n%40googlegroups.com.


Re: [visualization-api] Google Charts -- radar -- image in area?

2020-12-12 Thread 'Daniel LaLiberte' via Google Visualization API
Hi John,

There is a potential solution involving use of blends to implement
masking.  See the issue that started it:
https://github.com/vega/vega/issues/2311

The change that added blends:
https://github.com/vega/vega/pull/2422

The mark documentation - look for the blend color property.
https://vega.github.io/vega-lite/docs/mark.html

How css blend modes might be used to implement masking of an image.
https://codepen.io/jonnyscholes/post/css-blend-modes

Also, how to draw an image in Vega:
https://vega.github.io/vega/docs/marks/image/
https://css-tricks.com/almanac/properties/m/mask-image/
...

There is still a lot to figure out to put all this together, but it seems
possible.


On Sat, Dec 12, 2020 at 9:03 PM John Freebury 
wrote:

> Hi All ,
> I am creating a radar chart and need it to have an image in the area of
> the chart, replacing a solid fill.
> Looking at the Radar chart script here --
> https://developers.google.com/chart/interactive/docs/gallery/vegachart#radar-chart-example
> -- I wonder whether it is possible. Can the "marks" properties be adjusted
> to insert an image, perhaps working with the transparency?   Attached is a
> sample.
>
> Here's a snippet from that script:
> ...
> "marks": [
>   {
> "type": "group",
> "name": "categories",
> "zindex": 1,
> "from": {
>   "facet": {"data": "table", "name": "facet", "groupby":
> ["category"]}
> },
> "marks": [
>   {
> "type": "line",
> "name": "category-line",
> "from": {"data": "facet"},
> "encode": {
>   "enter": {
> "interpolate": {"value": "linear-closed"},
> "x": {"signal": "scale('radial', datum.value) *
> cos(scale('angular', datum.key))"},
> "y": {"signal": "scale('radial', datum.value) *
> sin(scale('angular', datum.key))"},
> "stroke": {"value": color},
> "strokeWidth": {"value": 1.5},
>
> *   "fill": {"value": color},
> "fillOpacity": {"value": 0.1}*
>   }
> ...
>
> Any help would be most welcome.  Thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/0f5df060-a38f-41a9-bb2f-1f3bc726507fn%40googlegroups.com
> 
> .
>


-- 
Daniel LaLiberte 
dlalibe...@google.comCambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNeML%3DfbcjN9LhpUw82D2YcJY0zHxW1kcXYZJmLwYzwhg%40mail.gmail.com.


[visualization-api] Google Charts -- radar -- image in area?

2020-12-12 Thread John Freebury
Hi All ,
I am creating a radar chart and need it to have an image in the area of the 
chart, replacing a solid fill. 
Looking at the Radar chart script here -- 
https://developers.google.com/chart/interactive/docs/gallery/vegachart#radar-chart-example
 
-- I wonder whether it is possible. Can the "marks" properties be adjusted 
to insert an image, perhaps working with the transparency?   Attached is a 
sample. 

Here's a snippet from that script: 
...
"marks": [
  {
"type": "group",
"name": "categories",
"zindex": 1,
"from": {
  "facet": {"data": "table", "name": "facet", "groupby": 
["category"]}
},
"marks": [
  {
"type": "line",
"name": "category-line",
"from": {"data": "facet"},
"encode": {
  "enter": {
"interpolate": {"value": "linear-closed"},
"x": {"signal": "scale('radial', datum.value) * 
cos(scale('angular', datum.key))"},
"y": {"signal": "scale('radial', datum.value) * 
sin(scale('angular', datum.key))"},
"stroke": {"value": color},
"strokeWidth": {"value": 1.5},
 
*   "fill": {"value": color},
"fillOpacity": {"value": 0.1}*
  }
...

Any help would be most welcome.  Thanks! 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/0f5df060-a38f-41a9-bb2f-1f3bc726507fn%40googlegroups.com.


[visualization-api] Google Charts In Email

2020-10-13 Thread shriram krishnan
Hi All,

I need to send google charts to my emaill body, however my charts view is 
called via cron in codeigniter PHP and then the contents are rendered in 
backend and then passed directly for mailing.

I am unable to even capture image using getImageUri of google chart, as it 
is not rendered in UI/browser and passed directly to mail.

Can anybody suggest me how to do pass the same in mail.

Thanks & Regards
Sreeram Krishnan

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/f773e061-94fb-40e9-ad37-60b4a036465en%40googlegroups.com.


[visualization-api] Google charts - Tree Map - Color & Borders

2020-08-27 Thread Shashank Bafna
Hi team,

I have a issue. for eg:
maxColorVal = 4
minColorVal= 0

& by chance my data contains all color values as 0, then the treemap 
plotted is of midColor, i.e. 2

Secondly,
Can I darken the border of parent node (except last node) programitcally?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/3e7163d7-5211-4971-abe1-14fa041014b4n%40googlegroups.com.


[visualization-api] Google Charts in a Dynamic Table/Accordion with Dynamic Id?

2020-08-19 Thread 'Mobile Design' via Google Visualization API
Hi All,

I have a requirement wherein I need to implement Google Line Charts inside 
a table/accordion having ''n" no. of rows/accordion items based on dynamic 
data. On click of each row I call the Drawchart function by passing the id 
in a string.

My query is can the google charts be implemented by passing the id of the 
div in the row/div items in the table/accprdion dynamially to the Drawchart 
function?? Have tried passing but I end up getting error in console ie 
"*jsapi_compiled_default_module.js:313 
Uncaught (in promise) Error: Container is not defined"* 

Sharing my code below. Looking forward for a solution for the same. Any 
solution or feedback is highly appreciated. Thanks
Html:


  
 



.n no of row
 

google.charts.load('current', {'packages':['corechart']});
  google.charts.setOnLoadCallback(drawChart1);
  function drawChart1(id1) {
var data1 = google.visualization.arrayToDataTable([
['Month', 'Reliance', 'Canara Robeco'],
['Jan',  200,100],
['Feb',  100,   200],
['Mar',  400,   300],
['Apr',  100,   400],
['May',  600,   785],
['Jun',  300,   200],
['July',  100,   200],
['Aug',  200,   300],
['Sep',  660,   350],
['Oct',  800,   600],
['Nov',  660,   1120],
['Dec',  1030,  1150]
]);
var options1 = {
curveType: 'function',
height: 350,
legend: { position: 'bottom' }
};
function resize1() {
var chart1 = new 
google.visualization.LineChart(document.getElementById(id1));
chart1.draw(data1, options1);
}
window.onload = resize1();
window.onresize = resize1;
  }


-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/2630763a-42fb-4016-8aa0-6c356e330230n%40googlegroups.com.


[visualization-api] Google Charts 'upcoming' release of v49

2020-07-08 Thread 'Daniel LaLiberte' via Google Visualization API
Google Charts version '49' is now available.  As before, you can use this
upcoming version by loading 'upcoming'.  Please test the new features and
let us know if you experience any issues.


  google.charts.load('*upcoming*', {packages: ['corechart']});



*Anticipated production release date*: July 22, 2020
At this time, the 'current' version is still '48'.
On the release date, loading either 'current' or 'upcoming' will load '49'.

This release includes several more internal refactorings, so be aware of
unintentional breakages. Code that has been affected includes all
formatting classes, events, errors, parts of ChartEditor, ChartWrapper,
ControlWrapper, Corecharts, Corechart axis ticks, GeoChart, and Query.

   - VegaChart
   
  - New chart type, now released in beta.
  - A VegaChart is a wrapper for all of the many possible
  visualizations that may be specified using the Vega Visualization Grammar
  and drawn using data from DataTables like other charts. In
future releases,
  we will further integrate the features of Google Charts and Vega.
  - Uses the vega-interpreter to remain compliant with Content Security
  Policy restrictions.
   - GeoChart
   
  - geochartVersion option, specifies the border data version; default
  is 10, but 11 is now available.
  - regioncoderVersion option, specifies the region coder data version;
  default is 0, but 1 is now available.
   - Gantt Chart
   
  - Added sortTasks option, default value true, to sort the tasks
  normally, or if false, use the same order as the rows in the DataTable.
   - Query
  - The JSON response option now requires that the server returns
  strict JSON.
   - Loader
  - If google.charts.load() is called more than one time with different
  versions or different languages, the settings from the first
load are used.
  - Allows a version number, not just a version string.
  - More backward compatibility tweaks to support redirects from the
  old jsapi loader.
  - The autoload URL parameter must now be formatted as strict JSON,
  and URL encoded.
  - The google.charts.load() call now returns a JavaScript Promise, so
  in addition to the other callback mechanisms, you can call your chart
  drawing function like this: google.charts.load('upcoming', {packages:
  ['corechart']}).then(drawChart);


-- 
Daniel LaLiberte 
dlalibe...@google.comCambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJMbh51JYT2rPfbRY6A5regnGnmkBt87-BZTm7f5Wgq6FQ%40mail.gmail.com.


[visualization-api] Google Charts pricing confusion

2020-06-17 Thread Hasan Rahman
Hi,

Hoping someone can provide some clarity on this. I understand Google Charts 
is free. However a mapsApiKey is required and this is where I am unsure if 
my use of the product will be free or not.
I am using GeoChart on a commercial website. Does this make any API 
requests which count as billable transactions against the mapsApiKey?

Thank you.


-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/6193c158-987e-4467-86c7-7d36059d6a03o%40googlegroups.com.


[visualization-api] Google Charts 'upcoming' release of v48

2020-04-27 Thread 'Daniel LaLiberte' via Google Visualization API
You can now load Google Charts version '48'.  You should soon also be able
to use this version by loading 'upcoming', but it is possible that might be
unstable for a couple days since we are testing some new features of the
loader.

Please test version '48' and let us know if you experience any new
problems.   At this time, 'current' is still '47' but you can continue to
load version '47' by specifying that version.

*Anticipated production release date*: May 4
On this date, loading 'current' or 'upcoming' will load '48'.

In addition to more internal refactoring, mostly migration to ES6 and
TypeScript, there are a couple bug fixes and a major new feature.

* Fix a bug with boxStyle for annotations when there are multiple series.
* Fix AnnotationChart zoom buttons.
* Avoid use of array.entries() and Object.entries().  This is to avoid
requiring polyfills for IE11 which may conflict.
* GeoChart now loads data using xhr, which means the setMapsSource method
will work again, with two conditions: (1)The data portion of the content
must have no comments (i.e. strict JSON format) and (2) the server must
allow cross-origin requests for the data.  We will also finally be updating
the maps data very soon, so look for news on that.
* VegaChart - this is a significant new feature which we are very excited
to announce.  You can find documentation for the VegaChart here:
https://developers.google.com/chart/interactive/docs/gallery/vegachart

-- 
Daniel LaLiberte 
dlalibe...@google.comCambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNpw0CFtss010A4Jp3gaFO_%3DPrWLxJwTNV8vCPGYZHD%3DA%40mail.gmail.com.


Re: [visualization-api] Google Charts - Multiple chart types from same data Source with multiple filters.

2020-04-22 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Asha,

See the section on how to bind one or more controls with one or more
charts, in
https://developers.google.com/chart/interactive/docs/gallery/controls#6-establish-dependencies


On Wed, Apr 22, 2020 at 12:41 PM Asha Saji  wrote:

> Hello,
>
> In order to make my requirement more clear , it is same like the demo in
> the link:
>
> https://developers.google.com/chart/interactive/docs/gallery/controls#programmatic_change
> - The very first visual where *a category picker and a range slider are
> used to drive the data visualized by a pie chart  and Table. *
> Filter on one chart  has effect on the other one. I guess it is because of
> the fact that both are based on common data (?).
>
> Can I get the sample source please...
>
> Thanks in advance.
> Asha
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/57882359-05fe-42a5-ad62-cee79fdb46a3%40googlegroups.com
> 
> .
>


-- 
Daniel LaLiberte 
dlalibe...@google.comCambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNG7Rmw_CWM5FR9eO_jS4Ct8VstuY8jT2Xqg7g0OjcyeA%40mail.gmail.com.


[visualization-api] Google Charts - Multiple chart types from same data Source with multiple filters.

2020-04-22 Thread Asha Saji
Hello,

In order to make my requirement more clear , it is same like the demo in 
the link:
https://developers.google.com/chart/interactive/docs/gallery/controls#programmatic_change
  
- The very first visual where *a category picker and a range slider are 
used to drive the data visualized by a pie chart  and Table. *
Filter on one chart  has effect on the other one. I guess it is because of 
the fact that both are based on common data (?).

Can I get the sample source please...

Thanks in advance.
Asha

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/57882359-05fe-42a5-ad62-cee79fdb46a3%40googlegroups.com.


Re: [visualization-api] Google Charts not working on IE

2020-02-19 Thread 'Daniel LaLiberte' via Google Visualization API
Ilya,

I created a jsfiddle with your code sample, and it loaded fine for me in IE
11.   What do you get when you visit
https://jsfiddle.net/dlaliberte/n0wm2crd/1/ ?

On Thu, Feb 13, 2020 at 2:43 PM Shulimovich, Ilya <
ilya.shulimov...@cantor.com> wrote:

> Thank you Daniel for the prompt response.
>
>
>
> The snippet provided is the entire code of the web page I am trying to
> display.
>
>
>
> IE debugger console shows 2 errors:
>
>
>
> SCRIPT1010: Expected identifier
>
> loader.js (15,397)
>
>
>
> SCRIPT5009: 'google' is undefined
>
> dailyHaircutAnalyticsAction.do (6,5)
>
>
>
> The 2nd error is pointing to the following statement
>
>
>
> google.charts.load('current', {packages: ['corechart']});
>
>
>
>
>
> Classification: Internal Use Only
>
> *From:* 'Daniel LaLiberte' via Google Visualization API <
> google-visualization-api@googlegroups.com>
> *Sent:* Thursday, February 13, 2020 2:24 PM
> *To:* Google Visualization API 
> *Subject:* Re: [visualization-api] Google Charts not working on IE
>
>
>
> *This email originated from outside the Firm*
>
>
>
> Hi Ilya,
>
>
>
> I can't be sure but I would suspect there is some incompatibility with IE
> 11 and the newer Array functions that we are using now.   I don't have
> access to IE 11 at the moment, so if you could post some details about the
> error that is resulting (which should be visible in your browser's
> debugger), that might be enough for me to narrow it down.   I assume this
> snippet is your entire code, and there is no other library you are loading,
> such as prototype.
>
>
>
> On Thu, Feb 13, 2020 at 1:27 PM Ilya Shulim 
> wrote:
>
> I am experiencing an issue with displaying google charts on IE 11. Below
> code works on Mozilla and Chrome but not on IE.
>
>
>
> 
>
>   https://www.gstatic.com/charts/loader.js</a>
> <<a  rel="nofollow" href="https://urldefense.proofpoint.com/v2/url?u=https-3A__www.gstatic.com_charts_loader.js&d=DwMFaQ&c=3v6EBbtpnn9A7jIZYjOw6KN7Pe17WoimzcinOq2Xztg&r=LNySyBanwcSwPILq_4-xlvBxBePsc_7FsMxIdRWiHjo&m=edwGnnmEVXevPMte1rm51EpIZdKIctKwwfwffc-HVJE&s=FgfsjL60uQBBnLzcKVSmY7Q5KBWL_MdDEnQYyEyLczA&e=">https://urldefense.proofpoint.com/v2/url?u=https-3A__www.gstatic.com_charts_loader.js&d=DwMFaQ&c=3v6EBbtpnn9A7jIZYjOw6KN7Pe17WoimzcinOq2Xztg&r=LNySyBanwcSwPILq_4-xlvBxBePsc_7FsMxIdRWiHjo&m=edwGnnmEVXevPMte1rm51EpIZdKIctKwwfwffc-HVJE&s=FgfsjL60uQBBnLzcKVSmY7Q5KBWL_MdDEnQYyEyLczA&e=</a>>
> ">
>
>   
>
> google.charts.load('current', {packages: ['corechart']});
>
> google.charts.setOnLoadCallback(drawChart);
>
>
>
> function drawChart() {
>
>   // Define the chart to be drawn.
>
>   var data = new google.visualization.DataTable();
>
>   data.addColumn('string', 'Element');
>
>   data.addColumn('number', 'Percentage');
>
>   data.addRows([
>
> ['Nitrogen', 0.78],
>
> ['Oxygen', 0.21],
>
> ['Other', 0.01]
>
>   ]);
>
>
>
>   // Instantiate and draw the chart.
>
>   var chart = new
> google.visualization.PieChart(document.getElementById('myPieChart'));
>
>   chart.draw(data, null);
>
> }
>
>   
>
> 
>
> 
>
>   
>
>   
>
> 
>
>
> Can anyone suggest what could be the possible cause of this behavior?
>
>
>
> Thanks in advance.
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/14dd0b9e-3f36-4f74-a4b2-8d68a248e975%40googlegroups.com
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_google-2Dvisualization-2Dapi_14dd0b9e-2D3f36-2D4f74-2Da4b2-2D8d68a248e975-2540googlegroups.com-3Futm-5Fmedium-3Demail-26utm-5Fsource-3Dfooter&d=DwMFaQ&c=3v6EBbtpnn9A7jIZYjOw6KN7Pe17WoimzcinOq2Xztg&r=LNySyBanwcSwPILq_4-xlvBxBePsc_7FsMxIdRWiHjo&m=edwGnnmEVXevPMte1rm51EpIZdKIctKwwfwffc-HVJE&s=kyhdxc3ZkGHNo6RX3gz7cwD36Bby5NUa20tOBAfedHc&e=>
> .
>
>
>
>
> --
>
> *Daniel LaLiberte*
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__plus.google.com_100631381223468223275-3Fprsrc

RE: [visualization-api] Google Charts not working on IE

2020-02-13 Thread Shulimovich, Ilya
Thank you Daniel for the prompt response.

The snippet provided is the entire code of the web page I am trying to display.

IE debugger console shows 2 errors:

SCRIPT1010: Expected identifier
loader.js (15,397)

SCRIPT5009: 'google' is undefined
dailyHaircutAnalyticsAction.do (6,5)

The 2nd error is pointing to the following statement

google.charts.load('current', {packages: ['corechart']});



Classification: Internal Use Only
From: 'Daniel LaLiberte' via Google Visualization API 

Sent: Thursday, February 13, 2020 2:24 PM
To: Google Visualization API 
Subject: Re: [visualization-api] Google Charts not working on IE

*This email originated from outside the Firm*

Hi Ilya,

I can't be sure but I would suspect there is some incompatibility with IE 11 
and the newer Array functions that we are using now.   I don't have access to 
IE 11 at the moment, so if you could post some details about the error that is 
resulting (which should be visible in your browser's debugger), that might be 
enough for me to narrow it down.   I assume this snippet is your entire code, 
and there is no other library you are loading, such as prototype.

On Thu, Feb 13, 2020 at 1:27 PM Ilya Shulim 
mailto:ilya.shulimov...@cantor.com>> wrote:
I am experiencing an issue with displaying google charts on IE 11. Below code 
works on Mozilla and Chrome but not on IE.


  https://www.gstatic.com/charts/loader.js</a><<a  rel="nofollow" href="https://urldefense.proofpoint.com/v2/url?u=https-3A__www.gstatic.com_charts_loader.js&d=DwMFaQ&c=3v6EBbtpnn9A7jIZYjOw6KN7Pe17WoimzcinOq2Xztg&r=LNySyBanwcSwPILq_4-xlvBxBePsc_7FsMxIdRWiHjo&m=edwGnnmEVXevPMte1rm51EpIZdKIctKwwfwffc-HVJE&s=FgfsjL60uQBBnLzcKVSmY7Q5KBWL_MdDEnQYyEyLczA&e=">https://urldefense.proofpoint.com/v2/url?u=https-3A__www.gstatic.com_charts_loader.js&d=DwMFaQ&c=3v6EBbtpnn9A7jIZYjOw6KN7Pe17WoimzcinOq2Xztg&r=LNySyBanwcSwPILq_4-xlvBxBePsc_7FsMxIdRWiHjo&m=edwGnnmEVXevPMte1rm51EpIZdKIctKwwfwffc-HVJE&s=FgfsjL60uQBBnLzcKVSmY7Q5KBWL_MdDEnQYyEyLczA&e=</a>>">
  
google.charts.load('current', {packages: ['corechart']});
google.charts.setOnLoadCallback(drawChart);

function drawChart() {
  // Define the chart to be drawn.
  var data = new google.visualization.DataTable();
  data.addColumn('string', 'Element');
  data.addColumn('number', 'Percentage');
  data.addRows([
['Nitrogen', 0.78],
['Oxygen', 0.21],
['Other', 0.01]
  ]);

  // Instantiate and draw the chart.
  var chart = new 
google.visualization.PieChart(document.getElementById('myPieChart'));
  chart.draw(data, null);
}
  


  
  


Can anyone suggest what could be the possible cause of this behavior?

Thanks in advance.

--
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
google-visualization-api+unsubscr...@googlegroups.com<mailto:google-visualization-api+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/14dd0b9e-3f36-4f74-a4b2-8d68a248e975%40googlegroups.com<https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_google-2Dvisualization-2Dapi_14dd0b9e-2D3f36-2D4f74-2Da4b2-2D8d68a248e975-2540googlegroups.com-3Futm-5Fmedium-3Demail-26utm-5Fsource-3Dfooter&d=DwMFaQ&c=3v6EBbtpnn9A7jIZYjOw6KN7Pe17WoimzcinOq2Xztg&r=LNySyBanwcSwPILq_4-xlvBxBePsc_7FsMxIdRWiHjo&m=edwGnnmEVXevPMte1rm51EpIZdKIctKwwfwffc-HVJE&s=kyhdxc3ZkGHNo6RX3gz7cwD36Bby5NUa20tOBAfedHc&e=>.


--
Daniel 
LaLiberte<https://urldefense.proofpoint.com/v2/url?u=https-3A__plus.google.com_100631381223468223275-3Fprsrc-3D2&d=DwMFaQ&c=3v6EBbtpnn9A7jIZYjOw6KN7Pe17WoimzcinOq2Xztg&r=LNySyBanwcSwPILq_4-xlvBxBePsc_7FsMxIdRWiHjo&m=edwGnnmEVXevPMte1rm51EpIZdKIctKwwfwffc-HVJE&s=CPAetf56fecMpQFyf0-KtKxtTWH0JNDgAhmUo7-YXd4&e=>
dlalibe...@google.com<mailto:dlalibe...@google.com>   Cambridge MA

--
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
google-visualization-api+unsubscr...@googlegroups.com<mailto:google-visualization-api+unsubscr...@googlegroups.com>.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJOC6_CbzJVnpVRx6Lksjt1o2CVQDOd4%3DefK1eP9O4HNrg%40mail.gmail.com<https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_google-2Dvisualization-2Dapi_CAOtcSJOC6-5FCbzJVnpVRx6Lksjt1o2CVQDOd4-253DefK1

Re: [visualization-api] Google Charts not working on IE

2020-02-13 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Ilya,

I can't be sure but I would suspect there is some incompatibility with IE
11 and the newer Array functions that we are using now.   I don't have
access to IE 11 at the moment, so if you could post some details about the
error that is resulting (which should be visible in your browser's
debugger), that might be enough for me to narrow it down.   I assume this
snippet is your entire code, and there is no other library you are loading,
such as prototype.

On Thu, Feb 13, 2020 at 1:27 PM Ilya Shulim 
wrote:

> I am experiencing an issue with displaying google charts on IE 11. Below
> code works on Mozilla and Chrome but not on IE.
>
> 
>   https://www.gstatic.com/charts/loader.js";>
>   
> google.charts.load('current', {packages: ['corechart']});
> google.charts.setOnLoadCallback(drawChart);
>
> function drawChart() {
>   // Define the chart to be drawn.
>   var data = new google.visualization.DataTable();
>   data.addColumn('string', 'Element');
>   data.addColumn('number', 'Percentage');
>   data.addRows([
> ['Nitrogen', 0.78],
> ['Oxygen', 0.21],
> ['Other', 0.01]
>   ]);
>
>   // Instantiate and draw the chart.
>   var chart = new
> google.visualization.PieChart(document.getElementById('myPieChart'));
>   chart.draw(data, null);
> }
>   
> 
> 
>   
>   
> 
>
> Can anyone suggest what could be the possible cause of this behavior?
>
> Thanks in advance.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/14dd0b9e-3f36-4f74-a4b2-8d68a248e975%40googlegroups.com
> 
> .
>


-- 
Daniel LaLiberte 
dlalibe...@google.comCambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJOC6_CbzJVnpVRx6Lksjt1o2CVQDOd4%3DefK1eP9O4HNrg%40mail.gmail.com.


[visualization-api] Google Charts not working on IE

2020-02-13 Thread Ilya Shulim
I am experiencing an issue with displaying google charts on IE 11. Below 
code works on Mozilla and Chrome but not on IE.


  https://www.gstatic.com/charts/loader.js";>
  
google.charts.load('current', {packages: ['corechart']});
google.charts.setOnLoadCallback(drawChart);

function drawChart() {
  // Define the chart to be drawn.
  var data = new google.visualization.DataTable();
  data.addColumn('string', 'Element');
  data.addColumn('number', 'Percentage');
  data.addRows([
['Nitrogen', 0.78],
['Oxygen', 0.21],
['Other', 0.01]
  ]);

  // Instantiate and draw the chart.
  var chart = new 
google.visualization.PieChart(document.getElementById('myPieChart'));
  chart.draw(data, null);
}
  


  
  


Can anyone suggest what could be the possible cause of this behavior? 

Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/14dd0b9e-3f36-4f74-a4b2-8d68a248e975%40googlegroups.com.


Re: [visualization-api] Google Charts api for QR Codes?

2020-02-02 Thread Johan Olofsson
is this true? Cause they removed the link, but then in another webpage I 
saw a new link and has used that since the removal of QR codes..
chart.apis.google.com is the new link I use.

But I have problems with it, when I request too fast it doesn't import the 
qr picture..

On Tuesday, November 29, 2016 at 6:25:21 PM UTC+1, Jon Orwant wrote:
>
> The new Google Charts don't have QR support, sorry!
>
> Jon
>
> On Tue, Nov 29, 2016 at 10:05 AM, Brad Wickwire  > wrote:
>
>> We have been using the old Infographics API to generate QR Codes but I 
>> noticed that it has been deprecated and replaced by Google Charts. The 
>> problem is that I can not seem to find any documents on QR Codes inside the 
>> new charts. Can someone help point me in the correct direction?
>>
>> OLD API URL
>>
>> https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=http%3A%2F%2Fwww.stubwire.com&choe=UTF-8
>>
>> OLD REFERENCE GUIDE
>> https://developers.google.com/chart/infographics/docs/qr_codes
>>
>> NEW REFERENCE GUIDE
>> https://developers.google.com/chart/
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualization-api+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to google-visua...@googlegroups.com 
>> .
>> Visit this group at 
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/49472106-e180-4f8c-b04f-2fd7c196fb43%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/dfd1b0ec-843e-43f2-8857-6dd267c81b64%40googlegroups.com.


[visualization-api] Google Charts and SEO?

2020-01-03 Thread Maria Helena Preiman
Can and does Google pull data from Google Charts to potentially show in 
search results snippet? 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/da7ee3c6-51bf-4eb8-a4b3-4721c3d8f8ec%40googlegroups.com.


[visualization-api] Google Charts v47

2019-12-20 Thread 'Daniel LaLiberte' via Google Visualization API
As of now, the 'upcoming' version of Google Charts is v47.  This release
includes a large number of internal cleanups, and a few new features:

   - Add loader setting to enable "safeMode".
  - When set to true, all charts and tooltips that generate HTML from
  user-supplied data will sanitize it by stripping out unsafe elements and
  attributes.
   - Add support for the "autoload" and "callback" parameters on the
   loader, to be backward compatible with the old jsapi loader.
   - For corecharts
  - Handle "zoomDelta" values below 1.0
  - Add "maxTextLines" as a vertical axis option.

If all goes well, this 'upcoming' version will become 'current' in the
first week of January.

-- 
Daniel LaLiberte 
dlalibe...@google.comCambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJOr%2BT7z%2B6Q4dWOUfrFz7pTdYyB28VjR_Zo5d6ONd-o%3Dow%40mail.gmail.com.


[visualization-api] Google Charts Bug

2019-12-15 Thread Sylvia Harner
Google Charts are not working at all. It says "Something went wrong reload" 
but it never comes up. I tried to do a new sheet and insert a chart same 
problem.
Can't open old ones or create new ones...
HELP.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/aeb3076a-da0b-4049-a9bd-f1bf94d437db%40googlegroups.com.


[visualization-api] Google Charts Breaking Due to new samesite=none secure rule

2019-12-12 Thread econline
Accessing Google Charts from localhost fails.

Works in production under https with no issues.

It appears to be related to rejecting insecure samesite=none cookies.

Is there a workaround for development sites that run under localhost?

ERROR:

A cookie associated with a resource at http://gstatic.com/ was set with 
`SameSite=None` but without `Secure`. A future release of Chrome will only 
deliver cookies marked `SameSite=None` if they are also marked `Secure`. 
You can review cookies in developer tools under Application>Storage>Cookies 
and see more details at 
https://www.chromestatus.com/feature/5633521622188032.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/696c7660-926f-49e5-bdcd-80f7190695f9%40googlegroups.com.


Re: [visualization-api] Google Charts Error messages

2019-12-01 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Liam,

Can you arrange to not draw the chart until the data is ready?  Maybe just
check whether your datatable is defined.

Alternatively, if you have to wait for your data to be fetched, that should
be the only path to attempting to draw the chart once you have the data.

On Sun, Dec 1, 2019 at 9:18 AM Liam Tannahill  wrote:

> I am using google charts to display some data from an API on a website I
> am building. I am relatively new to the technology and can't find a way to
> remove the error message that shows when the website is initially loaded. Data
> table is not definedI know why the error is displaying, but at this
> stage, the function that fetches the data may not have run, thus the table
> not being defined at this stage is fine.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/fee1be7b-8353-4da5-b9b1-75518434ef7e%40googlegroups.com
> 
> .
>


-- 
Daniel LaLiberte 
dlalibe...@google.comCambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNSnFhiXiWm3FBtR1ai%2Bmnd6Wg0B-7rJr4WQjO2LE%2BbUQ%40mail.gmail.com.


[visualization-api] Google Charts Error messages

2019-12-01 Thread Liam Tannahill
I am using google charts to display some data from an API on a website I am 
building. I am relatively new to the technology and can't find a way to 
remove the error message that shows when the website is initially loaded. Data 
table is not definedI know why the error is displaying, but at this 
stage, the function that fetches the data may not have run, thus the table 
not being defined at this stage is fine.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/fee1be7b-8353-4da5-b9b1-75518434ef7e%40googlegroups.com.


[visualization-api] Google Charts not working with my numbers when formatted in (usability) commas

2019-11-06 Thread Swar Det


I have loads of big data that I pull from a database into an array where I 
really need commas for usability. So, in SQL I Format the numbers and 
they're really nice (e.g. 21,876,987,000). However, when I use them in 
Google Charts, the charts break. So to make Google Charts happy I remove 
the Format in SQL and display raw numbers. 

What a dilemma. Usability of both would be splendid.

Any idea of what line(s) to add and where, so I can utilize my properly 
formatted numbers from my SQL??


Below is my current chart code.



google.charts.load('current', {packages: ['corechart'],
callback: drawChart});

function drawChart() {
var tableRows = [];
var results = document.getElementById('allstage');
Array.prototype.forEach.call(results.rows, function(row) {
var tableColumns = [];
Array.prototype.forEach.call(row.cells, function(cell) {
var cellText = cell.textContent || cell.innerText;
switch (cell.cellIndex) {
case 0:
tableColumns.push(cellText.trim());
break;

default:
switch (row.rowIndex) {
case 0:
tableColumns.push(cellText.trim());
break;

default:
tableColumns.push(parseFloat(cellText));
}
  }
});
tableRows.push(tableColumns);
});

var data = google.visualization.arrayToDataTable(tableRows);
var formatter = new google.visualization.NumberFormat(
 {negativeColor: 'red', negativeParens: true, pattern: '###,###'});
formatter.format(data, 1);   

var options = {

title: 'All Stages In Percent', 
titleTextStyle: {color: 'black', fontSize: 28},
 bar: {groupWidth: '70%'},
chartArea: { backgroundColor: { fill: '#F0F8FC', opacity: 100 }},
fontSize:12,
legend:  { position: 'right', textStyle: { color: 'black', fontSize: 12}},
 tooltip: {isHtml: true},
  is3D: true,
};

var chart = new 
google.visualization.PieChart(document.getElementById('allstage_div'));


chart.draw(data, options);
}
 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/8298ab79-82c7-4be6-9a99-c0ae42738f37%40googlegroups.com.


[visualization-api] Google charts has been deprecated

2019-09-24 Thread Dilip Bhandari
Hi All,

I have been using google chart/image chart in my emails. As per the 
notification from the google charts its have been deprecated, effective 
from March 18, 2019.

However, charts are still working and i can still use the old charts in my 
emails. There is another option suggested to use chart through Java Script 
and SVG. 

Unfortunately suggested option is not supported by the tool i am using to 
create emails. Is anyone aware or have any other option to use charts like 
before.

Example - 
"https://chart.googleapis.com/chart?cht=bvg&chs=250x150&chd=s:Monkeys&chxt=x,y&chxs=0,ff,12,0,lt|1,ff,10,1,lt"

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/ab4ebaae-7d92-42f9-a0cc-ab0906d0de71%40googlegroups.com.


[visualization-api] Google Charts only appears when mouse is hover.

2019-07-25 Thread Aina Murillo
Google Charts only appears when mouse is hover. We put the code for an 
interactive graphic:
https://docs.google.com/spreadsheets/d/e/2PACX-1vTfueN4Y0pGMzm7gISFCB4uGws3EG6Mt_mee9BGczy99cKv38nxyCG3X8AH_Rj1hpZsqD8K9j4vEYg-/pubchart?oid=1134014905&format=interactive
">

It seems that if you change the "interactive" propiety for an "image" one 
it works well but need the first one. 

Someone knows why?
Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/7a3062f9-5a8f-4086-afe0-a4e677914d53%40googlegroups.com.


[visualization-api] Google Charts

2019-06-28 Thread jose luiz verardino
Pessoal blz

Estou tendo dificuldades para trazer informações no google charts com 
grande numero de informações por exemplo segue os codigos parte de conteudo
//este esta apresentado informações no grafico
var data = google.visualization.arrayToDataTable([
['Info','2018','2019',],
[1,0,0,],[2,0,0,],[3,0,0,],[4,0,0,],[5,0,0,],[6,1,7,],[7,0,0,],[8,0,0,],[9,0,0,],[10,0,0,],[11,0,0,],[12,0,0,]
]);

//este não esta apresentado informações no grafico
var data = google.visualization.arrayToDataTable([
['Info','2018 | xxx','2018 | yyy','2019 | xxx','2019 | yyy''2020 | 
xxx','2020 | yyy',],
[1,0,0,0,0,01,],[2,0,0,0,0,00,],[3,0,0,0,0,00,],[4,0,0,0,0,00,],[5,0,0,0,3,00,],[6,0,1,2,14,00,],[7,0,0,0,1,00,],[8,0,0,0,0,00,],[9,0,0,0,0,00,],[10,0,0,0,0,00,],[11,0,0,0,0,01,],[12,0,0,0,1,01,]
]);

Alguem sabe o motivo que isso ocorre e se tem como corrigir

Valeu

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/c3a9122c-3a44-4c8c-beca-ed9b25e99b9e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google charts not showing on page

2019-06-11 Thread Chris Rowley
i h am trying to impliment google charts on my page to show a comparison 
between 2 years split by month,

to try and understand and to simplify the initial graph i used an example 
graph straight from the google charts docs.

this worked fine till i added my own data now i get no display, but if i 
veiw source the code is all in the page with the correct data,

i have filled out the dataloader with the correct data programmatically  


here is the view source


  google.charts.load('current', {'packages':['corechart', 'bar']});
  google.charts.setOnLoadCallback(drawStuff);

  function drawStuff() {

var button = document.getElementById('change-chart');
var chartDiv = document.getElementById('chart_div');

var data = google.visualization.arrayToDataTable([
['January', 0, 0],
['February', 0, 0],
['March', 0, 0],
['April', 6, 2],
['May', 26, 3],
['June', 0, 0],
['July', 0, 0],
['August', 0, 0],
['September', 0, 0],
['October', 0, 0],
['November',0, 0],
['December', 0, 0],
['TOTAL', 32, 5]
]);

var materialOptions = {
  width: 900,
  chart: {
title: 'Nearby galaxies',
subtitle: 'distance on the left, brightness on the right'
  },
  series: {
0: { axis: 'distance' }, // Bind series 0 to an axis named 
'distance'.
1: { axis: 'brightness' } // Bind series 1 to an axis named 
'brightness'.
  },
  axes: {
y: {
  distance: {label: 'parsecs'}, // Left y-axis.
  brightness: {side: 'right', label: 'apparent magnitude'} // 
Right y-axis.
}
  }
};

var classicOptions = {
  width: 900,
  series: {
0: {targetAxisIndex: 0},
1: {targetAxisIndex: 1}
  },
  title: 'Nearby galaxies - distance on the left, brightness on the 
right',
  vAxes: {
// Adds titles to each axis.
0: {title: 'parsecs'},
1: {title: 'apparent magnitude'}
  }
};

function drawMaterialChart() {
  var materialChart = new google.charts.Bar(chartDiv);
  materialChart.draw(data, 
google.charts.Bar.convertOptions(materialOptions));
  button.innerText = 'Change to Classic';
  button.onclick = drawClassicChart;
}

function drawClassicChart() {
  var classicChart = new google.visualization.ColumnChart(chartDiv);
  classicChart.draw(data, classicOptions);
  button.innerText = 'Change to Material';
  button.onclick = drawMaterialChart;
}

drawMaterialChart();
};


here is the page code

  google.charts.load('current', {'packages':['corechart', 'bar']});
  google.charts.setOnLoadCallback(drawStuff);

  function drawStuff() {

var button = document.getElementById('change-chart');
var chartDiv = document.getElementById('chart_div');

var data = google.visualization.arrayToDataTable([
['January', <%=nJan%>, <%=nJan2%>],
['February', <%=nFeb%>, <%=nFeb2%>],
['March', <%=nMar%>, <%=nMar2%>],
['April', <%=nApr%>, <%=nApr2%>],
['May', <%=nMay%>, <%=nMay2%>],
['June', <%=nJun%>, <%=nJun2%>],
['July', <%=nJul%>, <%=nJul2%>],
['August', <%=nAug%>, <%=nAug2%>],
['September', <%=nSep%>, <%=nSep2%>],
['October', <%=nOct%>, <%=nOct2%>],
['November',<%=nNov%>, <%=nNov2%>],
['December', <%=nDec%>, <%=nDec2%>],
['TOTAL', <%=nTot%>, <%=nTot2%>]
]);

var materialOptions = {
  width: 900,
  chart: {
title: 'Nearby galaxies',
subtitle: 'distance on the left, brightness on the right'
  },
  series: {
0: { axis: 'distance' }, // Bind series 0 to an axis named 
'distance'.
1: { axis: 'brightness' } // Bind series 1 to an axis named 
'brightness'.
  },
  axes: {
y: {
  distance: {label: 'parsecs'}, // Left y-axis.
  brightness: {side: 'right', label: 'apparent magnitude'} // 
Right y-axis.
}
  }
};

var classicOptions = {
  width: 900,
  series: {
0: {targetAxisIndex: 0},
1: {targetAxisIndex: 1}
  },
  title: 'Nearby galaxies - distance on the left, brightness on the 
right',
  vAxes: {
// Adds titles to each axis.
0: {title: 'parsecs'},
1: {title: 'apparent magnitude'}
  }
};

function drawMaterialChart() {
  var materialChart = new google.charts.Bar(chartDiv);
  materialChart.draw(data, 
google.charts.Bar.convertOptions(materialOptions));
  button.innerText = 'Change to Classic';
  button.onclick = drawClassicChart;
}

function drawClassicChart() {
  var classicChart = new google.visualization.ColumnChart(chartDiv);
  classicChart.draw(data, classicOp

[visualization-api] Google charts not displaying

2019-05-16 Thread Stallion
I am using google Column chart and displaying a Pie chart in the tooltips.

The charts are displaying fine when I use- legend: { alignment: 'center' }

But when I try to use- legend: { position: 'labeled' } in the tooltip chart 
options, the Column chart bars are not displaying at all. It is only 
showing the gridlines.

Is there anything I am missing?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/f53bf49a-4477-4a7d-98d7-184607b22067%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts Cover and Disable Buttons When Scrolling

2019-04-13 Thread Daniel Price
Hi! I have several charts arranged in a column, each in a separate div. I 
have a sticky navbar across part of my page, and when scrolling down the 
charts, the chart area covers part of my navbar, and also renders uncovered 
navbar buttons 'unclickable'. What's going on? Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/6fef777c-f037-4c98-8e7b-5ee246c37b6f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts Drawn from dashboard throwing error "Cannot read property 'getTime' of null" for few range

2019-04-10 Thread Himanshu Tongya
We are creating google charts from the google visualization dashboard using 
control wrapper as ChartRangeFilter.
For some range while we are sliding that slider we are getting error on 
charts as below : 

Cannot read property 'getTime' of null

PFA screenshot.

How to remove that error?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/8fd6db3b-5443-4a32-affd-b0509f3be459%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts api for QR Codes?

2019-03-26 Thread Phani Shashank Lingam
Does this mean the old API for QR Codes cannot be used anymore? 
Also any idea when this API will be completely turned off?


On Tuesday, 29 November 2016 18:25:21 UTC+1, orw...@google.com wrote:
>
> The new Google Charts don't have QR support, sorry!
>
> Jon
>
> On Tue, Nov 29, 2016 at 10:05 AM, Brad Wickwire  > wrote:
>
>> We have been using the old Infographics API to generate QR Codes but I 
>> noticed that it has been deprecated and replaced by Google Charts. The 
>> problem is that I can not seem to find any documents on QR Codes inside the 
>> new charts. Can someone help point me in the correct direction?
>>
>> OLD API URL
>>
>> https://chart.googleapis.com/chart?chs=300x300&cht=qr&chl=http%3A%2F%2Fwww.stubwire.com&choe=UTF-8
>>
>> OLD REFERENCE GUIDE
>> https://developers.google.com/chart/infographics/docs/qr_codes
>>
>> NEW REFERENCE GUIDE
>> https://developers.google.com/chart/
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualization-api+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to google-visua...@googlegroups.com 
>> .
>> Visit this group at 
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/49472106-e180-4f8c-b04f-2fd7c196fb43%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/a9f1bf32-042d-4a01-b693-0c82a65ea763%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts and Chrome versions/maintenance levels

2019-02-04 Thread 'Daniel LaLiberte' via Google Visualization API
We have tests running all the time for various browsers, including Chrome.
We typically only test with the most recent versions of the major browsers,
though we can be more specific about versions of more browsers if needed.

On Mon, Feb 4, 2019 at 10:36 AM Michael Rooney 
wrote:

> Hi Google support,
>   Does Google internally test versions of Chome and Charts
> for comatabiliy?  The reason I ask ...  I don't want my Charts
> to stop working if our company rolls out Chome maintenance or fixes that I
> don't foresee coming. I run with "current" version.
>Thank in advance!
> Michael
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/e8d6f44a-7bb3-46c8-a6eb-6209563791cb%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Daniel LaLiberte 
dlalibe...@google.comCambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNUsPk_pRtC72sC8r9kBYUPZv-e%2BsXHqSsv55Q%2B360UKg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts and Chrome versions/maintenance levels

2019-02-04 Thread Michael Rooney
Hi Google support,
  Does Google internally test versions of Chome and Charts
for comatabiliy?  The reason I ask ...  I don't want my Charts
to stop working if our company rolls out Chome maintenance or fixes that I 
don't foresee coming. I run with "current" version.
   Thank in advance! 
Michael 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/e8d6f44a-7bb3-46c8-a6eb-6209563791cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google charts reload with different language

2019-01-03 Thread Teo Kosmo
Hi everybody,

I am in the process of integrating the new library load (gstatic) and i was 
wondering if there is a way to reload google visualization api with 
different language without refreshing the whole page.
I was able to accomplish this with the old library loader (jsapi) by using 
autoload argument i.e. https://www.google.com/jsapi?autoload={modules:[ 
{name:'visualization',version:'1',packages: ['table','corechart', 
'geochart'], 'language':'en'

So by ajax requesting jsapi i was able to reload google visualization api 
with different language without refreshing the page. Is this possible with 
gstatic loader?


-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/9cbb4ad6-8aad-4f90-a36b-ef7c06d7bcf0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts - empty bar chart message

2018-11-01 Thread Rockabilly Dames
You could dynamically generate the message when you build/output the data
to the page... in php it woul dbe something like:

if(sizeof($data)==0)
{
 build chart with title "No data available yet"
}
else
{

}

On Wed, Oct 31, 2018 at 8:07 PM 'Roslyn O'Shea' via Google Visualization
API  wrote:

> New to google charts and my chart works as expected using JSONdata and a
> datatable. Is it possible if no data exists in the record set to display a
> message in the bar chart.
>
> Using google example is it possible to add a 'No Data' message when there
> is no data at 12pm?
>
>
> google.charts.load('current', {packages: ['corechart', 'bar']});
> google.charts.setOnLoadCallback(drawMultSeries);
> function drawMultSeries() {
>   var data = new google.visualization.DataTable();
>   data.addColumn('timeofday', 'Time of Day');
>   data.addColumn('number', 'Motivation Level');
>   data.addColumn('number', 'Energy Level');
>
>   data.addRows([
> [{v: [8, 0, 0], f: '8 am'}, 1, .25],
> [{v: [9, 0, 0], f: '9 am'}, 2, .5],
> [{v: [10, 0, 0], f:'10 am'}, 3, 1],
> [{v: [11, 0, 0], f: '11 am'}, 4, 2.25],
> [{v: [12, 0, 0], f: '12 pm'}, 0, 0],
> [{v: [13, 0, 0], f: '1 pm'}, 6, 3],
> [{v: [14, 0, 0], f: '2 pm'}, 7, 4],
> [{v: [15, 0, 0], f: '3 pm'}, 8, 5.25],
> [{v: [16, 0, 0], f: '4 pm'}, 9, 7.5],
> [{v: [17, 0, 0], f: '5 pm'}, 10, 10],
>   ]);
>
>   var options = {
> title: 'Motivation and Energy Level Throughout the Day',
> hAxis: {
>   title: 'Time of Day',
>   format: 'h:mm a',
>   viewWindow: {
> min: [7, 30, 0],
> max: [17, 30, 0]
>   }
> },
> vAxis: {
>   title: 'Rating (scale of 1-10)'
> }
>   };
>
>   var chart = new google.visualization.ColumnChart(
> document.getElementById('chart_div'));
>
>   chart.draw(data, options);
> }
>
>  src="https://www.gstatic.com/charts/loader.js";>
>   
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/9342e3e2-c77e-4d96-a731-61a3fd8e162b%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Sid Young
Sales & Marketing
*Rockabilly Dames*
E: sa...@rockabillydames.com
W: https://rockabillydames.com 

PO Box 611
Ashgrove 4060
Brisbane  Queesnland
Australia

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAA2W0qe9rJi7Pk2ziM-A2_c4sK37JUfVX%2BZ4zpWVEAnYmWSBZw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts - empty bar chart message

2018-10-31 Thread 'Roslyn O'Shea' via Google Visualization API


New to google charts and my chart works as expected using JSONdata and a 
datatable. Is it possible if no data exists in the record set to display a 
message in the bar chart.

Using google example is it possible to add a 'No Data' message when there 
is no data at 12pm?


google.charts.load('current', {packages: ['corechart', 'bar']});
google.charts.setOnLoadCallback(drawMultSeries);
function drawMultSeries() {
  var data = new google.visualization.DataTable();
  data.addColumn('timeofday', 'Time of Day');
  data.addColumn('number', 'Motivation Level');
  data.addColumn('number', 'Energy Level');

  data.addRows([
[{v: [8, 0, 0], f: '8 am'}, 1, .25],
[{v: [9, 0, 0], f: '9 am'}, 2, .5],
[{v: [10, 0, 0], f:'10 am'}, 3, 1],
[{v: [11, 0, 0], f: '11 am'}, 4, 2.25],
[{v: [12, 0, 0], f: '12 pm'}, 0, 0],
[{v: [13, 0, 0], f: '1 pm'}, 6, 3],
[{v: [14, 0, 0], f: '2 pm'}, 7, 4],
[{v: [15, 0, 0], f: '3 pm'}, 8, 5.25],
[{v: [16, 0, 0], f: '4 pm'}, 9, 7.5],
[{v: [17, 0, 0], f: '5 pm'}, 10, 10],
  ]);

  var options = {
title: 'Motivation and Energy Level Throughout the Day',
hAxis: {
  title: 'Time of Day',
  format: 'h:mm a',
  viewWindow: {
min: [7, 30, 0],
max: [17, 30, 0]
  }
},
vAxis: {
  title: 'Rating (scale of 1-10)'
}
  };

  var chart = new google.visualization.ColumnChart(
document.getElementById('chart_div'));

  chart.draw(data, options);
}

https://www.gstatic.com/charts/loader.js";>
  


-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/9342e3e2-c77e-4d96-a731-61a3fd8e162b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts Multi-series tooltip from csv file

2018-10-22 Thread Michael Henninger
Hello,

I have seen numerous answers online about how to add a tooltip containing 
each series in a multi-series line chart however they are adding the data 
manually and setting their role after the column is added.
I am getting my data from a csv file.  I am new to javascript so I may just 
be missing some simple code but if anyone has an example of defining the 
tooltip role for a chart generated from a csv file it would be much 
appreciated!

Here is my code so far.  
function NewChart() {
   $.get("test.csv", function(csvString) {
  // transform the CSV string into a 2-dimensional array
  var arrayData = $.csv.toArrays(csvString, {onParseValue: 
$.csv.hooks.castToScalar});

  // this new DataTable object holds all the data
  var data = new google.visualization.arrayToDataTable(arrayData);

var view = new google.visualization.DataView(data);
view.setColumns([
{
sourceColumn: 0,
type: 'datetime',
calc: function(table, row) {
var value = table.getValue(row, 0);
return moment(value).toDate();
}
},2,3,4
]);

  var newChart1 = new google.visualization.ChartWrapper({
 chartType: 'LineChart',
 containerId: 'chartContainer1',
 dataTable: view,
 options:{

title: 'New Chart',
  explorer: { 
actions: ["dragToZoom", "rightClickToReset"],
maxZoomIn: 0.2,
maxZoomOut: 1.0,
zoomDelta: 10,
axis: "horizontal",
keepInBounds: true
},
titleTextStyle : {color: 'grey', fontSize: 20},
legend: { position: 'bottom'},
hAxis: {
format: '-MM-d',
gridlines: {count: 3},
slantedTextAngle: 85
},
vAxis: {
title: 'Utilization %',
minValue: 0,
maxValue: 100,
},
chartArea: {
left: 50,
right: 15,
width: '100%'
},
animation: {

duration: 2000,
easing: 'out',
startup: true

},
 }
  });
  newChart1.draw();
   });
}

Here is a an example of my csv file format:

I would like to only plot Date, NETWORK(rxkB/s), NETWORK(txkB/s) and the 
NETWORK Total columns with a tooltip containing the date and each y value.

Date,CPU Utilization,NETWORK(rxkB/s),NETWORK(txkB/s),NETWORK Total
2018-10-22 16:10:01,3.37,38.04,149.33,187.37
2018-10-22 16:20:01,3.8,37.82,6.87,44.69
2018-10-22 16:30:01,3.28,38.47,7.04,45.51
2018-10-22 16:40:01,3.35,40.04,7.19,47.23
2018-10-22 16:50:01,3.46,39.55,7.11,46.66






-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/6be9ed50-b658-46e4-a7c4-ccf95174d0f0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] google charts sankey not working?

2018-10-11 Thread Stan Tomlinson
If I go to this page, on a variety browsers and machines, no Sankey charts 
are displayed.

https://developers.google.com/chart/interactive/docs/gallery/sankey

I suspect they should be working...

Anybody have any suggestions?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/9b90655d-5ed7-4304-bcde-9d52aa08f8ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts 'upcoming' release of v46 again

2018-09-17 Thread 'Daniel LaLiberte' via Google Visualization API
I've updated the 'upcoming' v46 release again.   You can now load Google
Charts version '46' by loading 'upcoming'.  Please test this version and
let us know if you experience any new problems.


At this time, 'current' is still '45.2'.  You can continue to load version
'45.2' by specifying that version.

*Anticipated production release date*: Oct 1
  On this date, loading 'current' or 'upcoming' will load '46'.

In addition to the changes previously announced in
https://groups.google.com/d/msg/google-visualization-api/yREgaC4x0oU/eHoBqHUNCQAJ,
several more changes have been made, mostly fixes to previous changes.  The
following list merges all the changes here, and highlights the new changes.

- Corecharts

   - All gridline and tick generation now computes the number of gridlines
   based on other options (see below).  If you specify a number for
   gridlines.count, it will only be used as an approximation.
   - Minor gridlines are even more dynamic since the appropriate number of
   minor gridlines depends on the interval between the major gridlines.  The
   default for numeric axes is no minor gridlines, but for dates and times,
   minor gridlines may be shown if they fit. Specify '{ minorGridlines: {
   count: 0 }}' to force no minor gridlines, or '{ minorGridlines: { count:
   1 }}' to enable minor gridlines if they fit.
   - New 'gridlines.minSpacing' option lets you specify the minimum screen
   space between major gridlines in pixels.  Default is 40 for linear scales,
   20 for log scales.
   - New 'gridlines.interval' option lets you specify an array of sizes of
   the gridlines as data values. The default for linear scales is {
   interval: [1, 2, 2.5, 5] } means the gridline values can fall on every
   unit (1), on even units (2), or on multiples of 2.5 or 5.  Any power of 10
   of these values are also considered.   For log scales, the default is [1,
   2, 5]. This option is only for numeric axes at this time, and it is
   analogous to the 'gridlines.units..interval' options which is used
   only for dates and times.
   - Add options for gridlines.multiple and minorGridlines.multiple, such
   that gridline and ticks values must be a multiple of this option's value.
   E.g. To force ticks to be integers, specify gridlines.multiple = 1.
   - Gridlines will usually be rejected if formatted tick labels for
   numbers are duplicated, so you can specify 'format:"#"' to only show
   integer ticks without risking generation of duplicate ticks.  But if all
   alternatives fail, the best case will still be used.
   - New 'viewWindow.maxPadding' lets you specify the maximum screen space
   before or after the data range, in percentage of the data range (as a
   string, e.g. '50%') or number of pixels.  The default is 30%.  Note that
   the data might extend beyond the first or last gridline occasionally, if it
   is not too much.
   - Many changes to the log scale and mirror log scale are included in
   this release.
   - Several changes were made to the axis tick and gridline generation to
   allow tighter packing of ticks that don't overlap.
  - Allow negative slanted angle, to slant the 'other' way.
  - Disable skipping and alternating (i.e. multiple staggered lines)
  for dates and times, by default.
   - Expand viewWindow to include explicit ticks, if outside the data
   range.  Explicit viewWindow min or max options can override.  This is a
   change to the previous behavior which acted more like 'maximized' mode with
   explicit ticks.
   - Fix for explorer mode, which was disabled after the first redraw.
   - Fixed ChartWrapper refreshInterval to actually refresh.
   - Trendline equations now use column labels instead of just 'x' and 'y'.
   - Fix polynomial trendlines to fail silently if there is no data.
   - Add option to specify legend default page index (legend.pageIndex).
   - Add event (legendpagination) to receive updates of legend pagination
   changes; data given to event handler is 'currentPageIndex' and
   'totalPages'.
   - *Number format for 'short' and 'long' patterns now use 3 significant
   digits.*
   - The timeofday formatting is fixed to use 24 hour (HH) values for the
   hours by default instead of 12 hour (hh) values.
   - *Explicit formats for dates and times will now override 'unit'
   formats.*


   - Histogram chart
  - Domain axis gridlines and baseline default color is 'none'.
  - Target axis ticks default format is now '#', to display integers
  only.
  - *Generate buckets using tick generation algorithm.*
  - *Default number of buckets is computed using a new
  histogram.numBucketsRule option.  Possible values are 'sqrt',
'sturges' and
  'rice'.
  See https://en.wikipedia.org/wiki/Histogram#Number_of_bins_and_width
  *


   - ColumnChart and BarChart
  - Fixed detection of minimum bar size (the difference between
  adjacent values) to work

Re: [visualization-api] Google Charts Blocked From China

2018-08-28 Thread Upol Hasan
Hi Ben,

Did you get around this issue? If you have setup a proxy please share with 
me the details how you accomplished this.

Thank you,
Upol.

On Friday, 27 June 2014 18:04:43 UTC-4, ben wrote:
>
> Thanks Jon!
>
> Am Freitag, 27. Juni 2014 schrieb 'Jon Orwant' via Google Visualization 
> API :
>
>> Hi Ben,
>>
>> We're not sure, but there are some indications that China has been 
>> blocking many Google services. Some press reports are connecting this to 
>> the anniversary of Tianamen Square, so it may be a short-lived phenomenon.
>>
>> If it's not, it's hard for us to give advice on what to do, since we 
>> can't tell exactly what is being blocked and how.  For instance, one 
>> workaround -- if you don't need the interactive features of Google Charts 
>> -- is to try our server side charts (
>> https://developers.google.com/chart/image/).
>>
>> Another is to use a proxy.  If you can do that, that's what I would try 
>> first.
>>
>> Jon
>>
>>
>> On Thu, Jun 26, 2014 at 9:08 AM, ben  wrote:
>>
>>> Hi!
>>>
>>> We use Google Charts extensively in our SaaS product around the world. 
>>> Since this year we face a big problem for our customers in China. China 
>>> blogs Google libraries. Is there a way to workaround? E.g. install the 
>>> libraries on our servers? Use proxies? This is very urgent for us - every 
>>> feedback highly appreciated!
>>>
>>> Best
>>> Ben
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "Google Visualization API" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to google-visualization-api+unsubscr...@googlegroups.com.
>>> To post to this group, send email to 
>>> google-visualization-api@googlegroups.com.
>>> Visit this group at 
>>> http://groups.google.com/group/google-visualization-api.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "Google Visualization API" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/google-visualization-api/lrTD-cn7PvQ/unsubscribe
>> .
>> To unsubscribe from this group and all its topics, send an email to 
>> google-visualization-api+unsubscr...@googlegroups.com.
>> To post to this group, send email to 
>> google-visualization-api@googlegroups.com.
>> Visit this group at 
>> http://groups.google.com/group/google-visualization-api.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> -- 
>
> BENJAMIN *JOST* 
>
> CEO & Co-founder //* TRUSTYOU *
>
> TrustYou HQ USA
> 6060 North Central Expressway, Suite 340, Dallas, Texas - USA
>
> TrustYou HQ Europe
> Munich Center of Technology, Agnes-Pockels-Bogen 1, 80992 Munich - Germany
>
> +49 176 830 74 860 // @Twitter  //  
> *www.trustyou.com 
> *
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/af8d1409-90a9-49fa-9ea8-8362ea2cde67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts - Vertical Table Headers

2018-08-26 Thread Ponni Mano
Hi,

 You Mention Particular Column name in chart Query data Option

*Thanks & Regards*

*K. Ponni*




On Mon, Aug 27, 2018 at 12:20 PM Ponni Mano  wrote:

> Hi,
>
>  It is Possible
> *Thanks & Regards*
>
> *K. Ponni*
>
>
>
>
> On Wed, Aug 22, 2018 at 8:00 AM Bevan Robinson 
> wrote:
>
>> Like this, a HTML table can be vertical or hosizontal
>>
>> https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_headers
>>
>>
>>
>> On Wednesday, August 22, 2018 at 2:23:11 PM UTC+12, Ponni Mano wrote:
>>>
>>> Hi,
>>>  Can u explain any picture format?
>>>
>>> On Wed 22 Aug, 2018 7:37 am Bevan Robinson, 
>>> wrote:
>>>
 I was going to use a Google Table chart for a comparison between
 products. But make the first and fourth columns headers.

 Header - Value Value - Header
 Header - Value Value - Header
 Header - Value Value - Header


 Is this possible?

 Seems I can only have

 Header Header Header
 Value Value Value

 --
 You received this message because you are subscribed to the Google
 Groups "Google Visualization API" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to google-visualization-api+unsubscr...@googlegroups.com.
 To post to this group, send email to google-visua...@googlegroups.com.
 Visit this group at
 https://groups.google.com/group/google-visualization-api.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/google-visualization-api/35e3ffa5-9f43-47ee-b26c-bc400a83b0ff%40googlegroups.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-visualization-api+unsubscr...@googlegroups.com.
>> To post to this group, send email to
>> google-visualization-api@googlegroups.com.
>> Visit this group at
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-visualization-api/f232cff4-0e04-4d0f-bbc4-9ba5ea1fce52%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAKdjpwgjSVk16gE6r84caTZU4U20F-t5piAeysy5x0n-Oiqy3g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts - Vertical Table Headers

2018-08-26 Thread Ponni Mano
Hi,

 It is Possible
*Thanks & Regards*

*K. Ponni*




On Wed, Aug 22, 2018 at 8:00 AM Bevan Robinson 
wrote:

> Like this, a HTML table can be vertical or hosizontal
>
> https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_headers
>
>
>
> On Wednesday, August 22, 2018 at 2:23:11 PM UTC+12, Ponni Mano wrote:
>>
>> Hi,
>>  Can u explain any picture format?
>>
>> On Wed 22 Aug, 2018 7:37 am Bevan Robinson, 
>> wrote:
>>
>>> I was going to use a Google Table chart for a comparison between
>>> products. But make the first and fourth columns headers.
>>>
>>> Header - Value Value - Header
>>> Header - Value Value - Header
>>> Header - Value Value - Header
>>>
>>>
>>> Is this possible?
>>>
>>> Seems I can only have
>>>
>>> Header Header Header
>>> Value Value Value
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google Visualization API" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-visualization-api+unsubscr...@googlegroups.com.
>>> To post to this group, send email to google-visua...@googlegroups.com.
>>> Visit this group at
>>> https://groups.google.com/group/google-visualization-api.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-visualization-api/35e3ffa5-9f43-47ee-b26c-bc400a83b0ff%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/f232cff4-0e04-4d0f-bbc4-9ba5ea1fce52%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAKdjpwi%3DsCkOkB%2Bk%2BUv3Uf4aW%3DSzWQHLMGHPug9nNxtGW69C5A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts - Vertical Table Headers

2018-08-21 Thread Bevan Robinson
Like this, a HTML table can be vertical or hosizontal

https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_headers



On Wednesday, August 22, 2018 at 2:23:11 PM UTC+12, Ponni Mano wrote:
>
> Hi,
>  Can u explain any picture format?
>
> On Wed 22 Aug, 2018 7:37 am Bevan Robinson,  > wrote:
>
>> I was going to use a Google Table chart for a comparison between 
>> products. But make the first and fourth columns headers.
>>
>> Header - Value Value - Header
>> Header - Value Value - Header
>> Header - Value Value - Header
>>
>>
>> Is this possible?
>>
>> Seems I can only have
>>
>> Header Header Header
>> Value Value Value
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualization-api+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to google-visua...@googlegroups.com 
>> .
>> Visit this group at 
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/35e3ffa5-9f43-47ee-b26c-bc400a83b0ff%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/f232cff4-0e04-4d0f-bbc4-9ba5ea1fce52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts - Vertical Table Headers

2018-08-21 Thread Ponni Mano
Hi,
 Can u explain any picture format?

On Wed 22 Aug, 2018 7:37 am Bevan Robinson,  wrote:

> I was going to use a Google Table chart for a comparison between products.
> But make the first and fourth columns headers.
>
> Header - Value Value - Header
> Header - Value Value - Header
> Header - Value Value - Header
>
>
> Is this possible?
>
> Seems I can only have
>
> Header Header Header
> Value Value Value
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/35e3ffa5-9f43-47ee-b26c-bc400a83b0ff%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAKdjpwgkZrSk8DP29T-am80gaw%3DzD4H3uTf%3DNT4Vm2f06xE8Bw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts - Vertical Table Headers

2018-08-21 Thread Bevan Robinson
I was going to use a Google Table chart for a comparison between products. 
But make the first and fourth columns headers.

Header - Value Value - Header
Header - Value Value - Header
Header - Value Value - Header


Is this possible?

Seems I can only have

Header Header Header
Value Value Value

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/35e3ffa5-9f43-47ee-b26c-bc400a83b0ff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google charts logs data temporarily for 2 weeks

2018-08-13 Thread Gaurang Shinde
I am making a product and I have used Google Charts.

Since it's mentioned on this link 
https://developers.google.com/chart/interactive/faq,

that Google logs chart data temporarily for weeks, I want to know where 
data is stored.

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/5431efaf-5ec2-476b-b5d1-4b5a5d54f178%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts | Line charts | Keyboard accessibility of legend element

2018-07-31 Thread 'Daniel LaLiberte' via Google Visualization API
The charts are not yet designed to be accessible in the way you described,
via keyboard interaction with the chart.  We don't have current plans to
make it so.

There is, however, a hidden table representing the data displayed in the
chart. This doesn't help, of course, for giving the user a sense of the
spatial relationships that would be visible in a chart.

On Tue, Jul 31, 2018 at 11:29 AM 'Jakub Skiba' via Google Visualization API
 wrote:

> I have a line chart with a legend. On a mouse hover event the series
> become bold, and when clicked the series line is doubled.
> I need to make chart keyboard accessible.
> I wonder it's possible to trigger the same behavior using keyboard. If so,
> how to configure it?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/d4d54d03-c7d9-4a7a-a368-359b514147f6%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJN94yBwCO3S3C8n3LixZMDA9_HOUTYKUC0P%2Br7wP4728Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts | Line charts | Keyboard accessibility of legend element

2018-07-31 Thread 'Jakub Skiba' via Google Visualization API
I have a line chart with a legend. On a mouse hover event the series become 
bold, and when clicked the series line is doubled.
I need to make chart keyboard accessible.
I wonder it's possible to trigger the same behavior using keyboard. If so, 
how to configure it?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/d4d54d03-c7d9-4a7a-a368-359b514147f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts Winforms

2018-07-09 Thread Simon Webber
Hi,

Is there an API I can use to produce Google Charts directory from my C# and 
VB.Net WINFORMS applications, the applications are not Web based.

Thanks in advance.

Regards

Simon

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/97f4e240-a096-4093-be0f-473a77fa2563%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google charts-mysql limit

2018-06-25 Thread Οδυσσέας Συμεωνίδης
Hi guys i have been uploading data to my mysql database for 2 months and 
recently noticed that the google charts that i have been making through the 
database have stopped updating.I searched the code for errors but nothing 
and i tried to delete old entries in the database (approximately a day 
worth of entries) and immediately the charts updated.Is there a limit of 
how many entries the chart could "see" ?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/23d1cd56-06f7-4a61-8cfa-830d6da7e430%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts | R

2018-06-20 Thread John Kendall
Thanks all for the replies. googleVis library should work for my use case.
It looks like it provides an interface between my R scripts and Google
Charts.

Cheers,
John

On Wed, Jun 20, 2018 at 7:04 AM, 'Daniel LaLiberte' via Google
Visualization API  wrote:

> Jon is technically correct, but perhaps the better question might have
> been is there a way to use Google Charts with R? And the answer is yes, via
> the "googleVis" library.   See:
>https://cran.r-project.org/web/packages/googleVis/
> vignettes/googleVis_examples.html
>
> On Tue, Jun 19, 2018 at 11:03 PM 'Jon Orwant' via Google Visualization API
>  wrote:
>
>> R is a statistical package; Google Charts is a JavaScript library. This
>> is like asking whether donkeys are compatible with salt. To which the
>> answer is "yes, but that's a weird question."
>>
>> Jon
>>
>> On Tue, Jun 19, 2018 at 8:55 PM, John Kendall 
>> wrote:
>>
>>> Is Google Charts compatible with R?
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google Visualization API" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-visualization-api+unsubscr...@googlegroups.com.
>>> To post to this group, send email to google-visualization-api@
>>> googlegroups.com.
>>> Visit this group at https://groups.google.com/
>>> group/google-visualization-api.
>>> To view this discussion on the web visit https://groups.google.com/d/
>>> msgid/google-visualization-api/873f14c5-c238-437b-9d3a-
>>> 06b13462a5ba%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-visualization-api+unsubscr...@googlegroups.com.
>> To post to this group, send email to google-visualization-api@
>> googlegroups.com.
>> Visit this group at https://groups.google.com/
>> group/google-visualization-api.
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/google-visualization-api/CAJs5hDZMN6njMSpQV2S%
>> 2BJPe94nFCs326cMHQc6MgzGgOK1DfEw%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> --
> Daniel LaLiberte 
> dlalibe...@google.com5CC, Cambridge MA
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to google-visualization-api@
> googlegroups.com.
> Visit this group at https://groups.google.com/
> group/google-visualization-api.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-visualization-api/CAOtcSJNn4eToOu%3DAFJvV227N0get%
> 2BQVS5AoNQmTpo5zX-bVwow%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
John Kendall
Product Intern
404.788.7449
[image: STRIVR] 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAG2qUsEhfjcDT9tcKpiu_b3AODtqo2dQzZajps0bN%3Djc-Y%3DbiQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts | R

2018-06-20 Thread 'Daniel LaLiberte' via Google Visualization API
Jon is technically correct, but perhaps the better question might have been
is there a way to use Google Charts with R? And the answer is yes, via the
"googleVis" library.   See:

https://cran.r-project.org/web/packages/googleVis/vignettes/googleVis_examples.html

On Tue, Jun 19, 2018 at 11:03 PM 'Jon Orwant' via Google Visualization API <
google-visualization-api@googlegroups.com> wrote:

> R is a statistical package; Google Charts is a JavaScript library. This is
> like asking whether donkeys are compatible with salt. To which the answer
> is "yes, but that's a weird question."
>
> Jon
>
> On Tue, Jun 19, 2018 at 8:55 PM, John Kendall 
> wrote:
>
>> Is Google Charts compatible with R?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-visualization-api+unsubscr...@googlegroups.com.
>> To post to this group, send email to
>> google-visualization-api@googlegroups.com.
>> Visit this group at
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-visualization-api/873f14c5-c238-437b-9d3a-06b13462a5ba%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/CAJs5hDZMN6njMSpQV2S%2BJPe94nFCs326cMHQc6MgzGgOK1DfEw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJNn4eToOu%3DAFJvV227N0get%2BQVS5AoNQmTpo5zX-bVwow%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts | R

2018-06-19 Thread 'Jon Orwant' via Google Visualization API
R is a statistical package; Google Charts is a JavaScript library. This is
like asking whether donkeys are compatible with salt. To which the answer
is "yes, but that's a weird question."

Jon

On Tue, Jun 19, 2018 at 8:55 PM, John Kendall 
wrote:

> Is Google Charts compatible with R?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to google-visualization-api@
> googlegroups.com.
> Visit this group at https://groups.google.com/
> group/google-visualization-api.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-visualization-api/873f14c5-c238-437b-9d3a-
> 06b13462a5ba%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAJs5hDZMN6njMSpQV2S%2BJPe94nFCs326cMHQc6MgzGgOK1DfEw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts | R

2018-06-19 Thread John Kendall
Is Google Charts compatible with R?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/873f14c5-c238-437b-9d3a-06b13462a5ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] google charts - changing data granularity

2018-06-10 Thread 'Daniel LaLiberte' via Google Visualization API
The only way we have currently to smoothen the data is to aggregate it,
using the data.group function.  See documentation at
https://developers.google.com/chart/interactive/docs/reference#google_visualization_data_group

You would specify a key with a custom modifier function that changes values
within an hour to a whole hour,
and then in the 'columns', specify an aggregation by averaging all the
values that have the same hour.

Another way to think about smoothing is a moving average, where instead of
one-hour discrete buckets, you would use a sliding window over the
preceding hour.  We don't have a way of computing such a moving average, so
you would have to do that on your own.  But you could do that a little more
simply with a DataView and a calculated column, using the setColumns method.

On Sun, Jun 10, 2018 at 2:34 AM nadavs  wrote:

> I've been working on a project with google charts for a while now. I have
> lots and lots of data points and i want to smooth it out.
>
> I'm generally looking for this:
> https://developers.google.com/chart/image/docs/gallery/line_charts#data-granularity
>  but
> with the current version of google charts.
>
> this is how a graph the represents a *day* looks like: [image: enter
> image description here] 
>
> this is how a graph the represents an *hour* looks like: [image: enter
> image description here] 
>
> I use ChartRangeFilter to "zoom" in and out on the graph but I want to
> smoothen the lines so it would look more reasonable.
>
> I know i can do this manually by averaging the data but it feels like an
> overkill. any suggestions?
>
> thanks!!!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/7e73820e-dcf0-45f7-9abc-88079623b975%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJOCagS-0dBH_2Dfgw18U7iUJ1nebwL6yGuk92G2GBM5Fg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] google charts - changing data granularity

2018-06-09 Thread nadavs
I've been working on a project with google charts for a while now. I have 
lots and lots of data points and i want to smooth it out.

I'm generally looking for this: 
https://developers.google.com/chart/image/docs/gallery/line_charts#data-granularity
 but 
with the current version of google charts.

this is how a graph the represents a *day* looks like: [image: enter image 
description here] 

this is how a graph the represents an *hour* looks like: [image: enter 
image description here] 

I use ChartRangeFilter to "zoom" in and out on the graph but I want to 
smoothen the lines so it would look more reasonable.

I know i can do this manually by averaging the data but it feels like an 
overkill. any suggestions?

thanks!!!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/7e73820e-dcf0-45f7-9abc-88079623b975%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts. Is there support for Marimekko Chart?

2018-05-01 Thread James Howison
Sorry for old thread revival, but I was playing around with this and 
wondered if there was any documentation about how bar: { variableWidth: 
true } works?  I couldn't quite get the hang of it from  jsfiddling with 
the example and it doesn't seem to be mentioned on the documentation that I 
could find.

Seems to me that the most useable approach to this would be to allow a 
column to specify the width of the bar, or to do it as a calculated value 
as the stacked elements / grand total of all columns.

On Monday, October 24, 2016 at 10:47:04 AM UTC-5, Daniel LaLiberte wrote:
>
> Hi Nathalie,
>
> You can get close to the Marimekko style, using a combination of 
> isStacked: 'percent' and bar: { variableWidth: true }.  Here is an example: 
>  https://jsfiddle.net/dlaliberte/2h6etzkx/
>
> On Sat, Oct 22, 2016 at 2:20 PM, Nathalie Sicard  > wrote:
>
>> I was wondering if it's be possible to build a Marimekko Chart with this 
>> API.
>>
>> Thank you!
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualization-api+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to google-visua...@googlegroups.com 
>> .
>> Visit this group at 
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/6a6c7394-606a-4d5c-b858-17c2b4e7f373%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Daniel LaLiberte 
> dlali...@google.com5CC, Cambridge MA
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/e0b73efb-498a-40b3-931d-49809dc11d83%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts API with SQL data in Python

2018-04-18 Thread Michael Syring
I have looked over the other questions addressing this, but they don't 
answer my questions specifically. I am trying to use data returned from SQL 
in Flask, and passing it to the Google Charts API. It's a basic 
weight/calorie tracker, and I need to return date and weight for the chart. 
My 'userdata' for one user returns from SQL query

userdata = db.execute("SELECT * FROM history WHERE id = :id", id=session[
"user_id"])


[{'id': 1, 'weight': 180, 'calories': 2100, 'rewards': 1, 'date': 
'2018-04-14'}, {'id': 1, 'weight': 185, 'calories': 1800, 'rewards': -1, 
'date': '2018-04-15'}, {'id': 1, 'weight': 180, 'calories': 1600, 'rewards': 
1, 'date': '2018-04-13'}, {'id': 1, 'weight': 180, 'calories': 1900, 
'rewards': -2, 'date': '2018-04-12'}, {'id': 1, 'weight': 186, 'calories': 
, 'rewards': 5, 'date': '2018-04-16'}, {'id': 1, 'weight': 184, 
'calories': 1200, 'rewards': 5, 'date': '2018-04-17'}, {'id': 1, 'weight': 
184, 'calories': 1400, 'rewards': 3, 'date': '2018-04-18'}, {'id': 1, 
'weight': 180, 'calories': 2100, 'rewards': -4, 'date': '2018-04-11'}]

I am not familiar with PHP which I see pop up often, but I am OK with 
Python, and just learning JavaScript. It appears I need to jsonify the data 
to pass, but I'm not sure how to do that. I read through the Google Charts 
documentation, but I'm still not quite sure how to pass this info into the 
chart code.

Any help you can give is MUCH appreciated!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/634e89db-7e73-4deb-917c-64845cfb601c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google charts doesn't display charts

2018-04-09 Thread Gaith Daragmeh
Correction

if(number && Number.isInteger(number))

On Mon, Apr 9, 2018, 7:07 AM Gaith Daragmeh  wrote:

> You can algo verify (value && parseIt(value))
> In case the server send it as string
> On Mon, Apr 9, 2018, 3:24 AM Jeroen Gees <
> monitoring.lasercont...@gmail.com> wrote:
>
>> Hi Gaith,
>>
>> 0 is also a value because we take  the delta from each point.
>> I found the solution. instead of empty I put NaN.
>>
>> Thanks
>> J
>>
>>
>> Op zaterdag 7 april 2018 14:44:12 UTC+2 schreef Gaith Daragmeh:
>>>
>>> Just dovalue ? value : 0:
>>>
>>> On Sat, Apr 7, 2018, 4:32 AM jeroen gees  wrote:
>>>
>> Hi,

 I made a website where you can check measured points.
 Sometimes we are not able to do this measurement and then the value is
 empty.
 If this empty value is on the end of a session, google charts doesn't
 display (no error)
 ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,0.004,]

 But if the empty value is not on the end of the session there is no
 problem.
 ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,,0.004]

 I'm working with the current version.

 Can somebody help me?

 --
 You received this message because you are subscribed to the Google
 Groups "Google Visualization API" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to google-visualization-api+unsubscr...@googlegroups.com.

>>> To post to this group, send email to google-visua...@googlegroups.com.
>>>
>>>
 Visit this group at
 https://groups.google.com/group/google-visualization-api.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/google-visualization-api/30a841f3-6b9d-464a-ab16-12ce92a9cfca%40googlegroups.com
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to google-visualization-api+unsubscr...@googlegroups.com.
>> To post to this group, send email to
>> google-visualization-api@googlegroups.com.
>> Visit this group at
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-visualization-api/15781c6b-77d7-4618-bef2-3b5bc047c146%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CA%2BXm44J6d7xteC7qjskF7VmKM2XT5dvFHYp5KnXxmoET%2BPk9uA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google charts doesn't display charts

2018-04-09 Thread Gaith Daragmeh
You can algo verify (value && parseIt(value))
In case the server send it as string
On Mon, Apr 9, 2018, 3:24 AM Jeroen Gees 
wrote:

> Hi Gaith,
>
> 0 is also a value because we take  the delta from each point.
> I found the solution. instead of empty I put NaN.
>
> Thanks
> J
>
>
> Op zaterdag 7 april 2018 14:44:12 UTC+2 schreef Gaith Daragmeh:
>>
>> Just dovalue ? value : 0:
>>
>> On Sat, Apr 7, 2018, 4:32 AM jeroen gees  wrote:
>>
> Hi,
>>>
>>> I made a website where you can check measured points.
>>> Sometimes we are not able to do this measurement and then the value is
>>> empty.
>>> If this empty value is on the end of a session, google charts doesn't
>>> display (no error)
>>> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,0.004,]
>>>
>>> But if the empty value is not on the end of the session there is no
>>> problem.
>>> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,,0.004]
>>>
>>> I'm working with the current version.
>>>
>>> Can somebody help me?
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "Google Visualization API" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to google-visualization-api+unsubscr...@googlegroups.com.
>>>
>> To post to this group, send email to google-visua...@googlegroups.com.
>>
>>
>>> Visit this group at
>>> https://groups.google.com/group/google-visualization-api.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/google-visualization-api/30a841f3-6b9d-464a-ab16-12ce92a9cfca%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/15781c6b-77d7-4618-bef2-3b5bc047c146%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CA%2BXm44LSeUGmX2cdubDn6erzNYzpY89ie-8FweukL%2BSWW8suhg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google charts doesn't display charts

2018-04-09 Thread Jeroen Gees
Hi Gaith,

0 is also a value because we take  the delta from each point.
I found the solution. instead of empty I put NaN.

Thanks
J 


Op zaterdag 7 april 2018 14:44:12 UTC+2 schreef Gaith Daragmeh:
>
> Just dovalue ? value : 0:
>
> On Sat, Apr 7, 2018, 4:32 AM jeroen gees  > wrote:
>
>> Hi,
>>
>> I made a website where you can check measured points. 
>> Sometimes we are not able to do this measurement and then the value is 
>> empty.
>> If this empty value is on the end of a session, google charts doesn't 
>> display (no error)
>> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,0.004,]
>>
>> But if the empty value is not on the end of the session there is no 
>> problem.
>> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,,0.004]
>>
>> I'm working with the current version.
>>
>> Can somebody help me?
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualization-api+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to google-visua...@googlegroups.com 
>> .
>> Visit this group at 
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/30a841f3-6b9d-464a-ab16-12ce92a9cfca%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/15781c6b-77d7-4618-bef2-3b5bc047c146%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google charts doesn't display charts

2018-04-07 Thread Gaith Daragmeh
Just dovalue ? value : 0:

On Sat, Apr 7, 2018, 4:32 AM jeroen gees  wrote:

> Hi,
>
> I made a website where you can check measured points.
> Sometimes we are not able to do this measurement and then the value is
> empty.
> If this empty value is on the end of a session, google charts doesn't
> display (no error)
> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,0.004,]
>
> But if the empty value is not on the end of the session there is no
> problem.
> ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,,0.004]
>
> I'm working with the current version.
>
> Can somebody help me?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to
> google-visualization-api@googlegroups.com.
> Visit this group at
> https://groups.google.com/group/google-visualization-api.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-visualization-api/30a841f3-6b9d-464a-ab16-12ce92a9cfca%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CA%2BXm44J8n73rqD7s%3DQbQ_QrQvK%3Dm7JBZdi-O2fR-XA6a_PWG3g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google charts doesn't display charts

2018-04-07 Thread jeroen gees
Hi,

I made a website where you can check measured points. 
Sometimes we are not able to do this measurement and then the value is 
empty.
If this empty value is on the end of a session, google charts doesn't 
display (no error)
ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,0.004,]

But if the empty value is not on the end of the session there is no problem.
ex. ['Session' ,'Test1','Test2'], ['1' ,0.001,0.002],['2' ,,0.004]

I'm working with the current version.

Can somebody help me?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/30a841f3-6b9d-464a-ab16-12ce92a9cfca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts - Data series without label for each point?

2018-03-29 Thread Tim Mousel
Hello,

I have daily resting heart rate data stored in a mysql database. I'd like 
to display the daily resting heart rate on a chart. On the X-axis I want to 
display the 12 months while the data points on the chart show the daily 
resting heart rate. Is that possible with Google Charts? If so, which part 
of the documentation would I find the info I need? I looked through the 
Line Chart documentation but didn't see how this could be accomplished.

It would be something similiar to how the points are plotted here:
https://1n4rcn88bk4ziht713dla5ub-wpengine.netdna-ssl.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-07-at-19.02.46-2.png

Thanks,

Tim


-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/9a213511-5ffc-407d-8089-7c4d1400b90c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts

2018-02-12 Thread 'Jon Orwant' via Google Visualization API
https://developers.google.com/chart/interactive/docs/overlays

Jon

On Mon, Feb 12, 2018 at 2:43 PM, Víctor Eduardo Ramos Ambriz <
soccer17r...@gmail.com> wrote:

> Hi! I have a question, recently I've been worked with Google Charts API
> and I want to know how can I customize a combo chart to add an image on top
> of a bar, actually a serie of bars, I´ve found some examples but every one
> do it with the same image and a loop but this chart require an image for
> each bar chart, thanks!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to google-visualization-api@
> googlegroups.com.
> Visit this group at https://groups.google.com/
> group/google-visualization-api.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-visualization-api/1f78688c-2acf-487e-aed7-
> 55c68d40cd29%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAJs5hDbwQPatXS816xyJsqMHaP4GnF1qY4gmQ8JBGRu316xMHw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts

2018-02-12 Thread Víctor Eduardo Ramos Ambriz
Hi! I have a question, recently I've been worked with Google Charts API and 
I want to know how can I customize a combo chart to add an image on top of 
a bar, actually a serie of bars, I´ve found some examples but every one do 
it with the same image and a loop but this chart require an image for each 
bar chart, thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/1f78688c-2acf-487e-aed7-55c68d40cd29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts after postback

2018-01-16 Thread Initiale
Hi, i'm using google chart in my asp.net project. Using it in more than one 
webusercontrol (ascx) when i add user controls in a page after postback 
chart lost it's arrangements. How can maintain it's apperance  between 
postbacks.Apperance attached. Title lost, left axis numbers slided and 
legend slided..

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/50636a61-6f87-428a-8836-3f9478dd36ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google charts

2018-01-11 Thread 'Jon Orwant' via Google Visualization API
There are no explicit limits. At some point a particular IP address might
be throttled if we detect too much traffic coming from it. But if you're
operating a web site, you're not likely to have to worry about that if each
of your visitors has a different IP address.

Jon

On Thu, Jan 11, 2018 at 4:26 PM, Kasaraneni Sameera  wrote:

> Hi I want to use Google charts in my Web app builder code. Can you let me
> know if there are any limitations for the usage of Google charts like no of
> hits per day etc
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to google-visualization-api@
> googlegroups.com.
> Visit this group at https://groups.google.com/
> group/google-visualization-api.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-visualization-api/b1b2e048-023e-4d53-830d-
> 9ccc9cfbaf0a%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAJs5hDYxcU8%3DmiOKgwKZnOR9%3DpC2%3DctaKHqvXjs4tynUFFaNsQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google charts

2018-01-11 Thread Kasaraneni Sameera
Hi I want to use Google charts in my Web app builder code. Can you let me 
know if there are any limitations for the usage of Google charts like no of 
hits per day etc

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/b1b2e048-023e-4d53-830d-9ccc9cfbaf0a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts shrinking due to caching

2018-01-08 Thread fawad ali syed
Hi,

I am new Google Charts. I am using google timeline chart in a single page 
application. When I try to render the chart in a tab in the application, it 
renders fine for the first time but when I try to re-render the chart it 
shrinks. When I clear my browser cache the issue disappears.

Has anyone else faced this issue? Any help/support will be appreciated.

*Chart in first Render (Or when I clear my cache):*





*Chart after Render Onwards:*



-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/9001aac0-c301-4192-bcf7-1ebc2ef88cf7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts - Terms of use

2017-12-27 Thread Ivan Antić
Thanks for quick heads-up Daniel !!

On Wednesday, 27 December 2017 18:04:51 UTC+1, Daniel LaLiberte wrote:
>
> Hi Ivan,
>
> You are allowed to use Google Charts for your commercial purposes, 
> including charging for access to your charts.
>
> But be aware that the GeoChart, in particular, may be throttled for your 
> users if you require geocoding.  If so, you would benefit from getting 
> your own MapsApiKey, since the key used in documentation examples is Google 
> specific and will not help avoid the possibility of throttling.
>
>
> On Wed, Dec 27, 2017 at 3:46 AM, Ivan Antić  > wrote:
>
>> Hi all,
>>
>> The question is related to: https://developers.google.com/chart/
>>
>> https://developers.google.com/chart/terms
>> https://developers.google.com/terms/
>>
>> *Pre-question:*
>> My company is about to use Google Charts ( Bars, Lines, Pies and 
>> GeoCharts only ) for internal use.
>> We have plans to create web based dashboards for various reports using 
>> our own bootstrap admin theme, where the charts are just a part of it.
>>
>> *Question:*
>> *1. *Are we allowed to use Google Charts for our company ( commercial 
>> use ) ?.
>> *2.* Are we allowed to charge our clients for Web Dashboards made?. 
>> where the google charts are included to show reports and data?
>>
>>
>> Thanks,
>> Ivan
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google Visualization API" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-visualization-api+unsubscr...@googlegroups.com 
>> .
>> To post to this group, send email to google-visua...@googlegroups.com 
>> .
>> Visit this group at 
>> https://groups.google.com/group/google-visualization-api.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-visualization-api/b9ef327b-c1de-45f7-b422-148737b8e3e8%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Daniel LaLiberte 
> dlali...@google.com5CC, Cambridge MA
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/e17a252f-216b-46d2-8c41-317490af8561%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts - Terms of use

2017-12-27 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Ivan,

You are allowed to use Google Charts for your commercial purposes,
including charging for access to your charts.

But be aware that the GeoChart, in particular, may be throttled for your
users if you require geocoding.  If so, you would benefit from getting your
own MapsApiKey, since the key used in documentation examples is Google
specific and will not help avoid the possibility of throttling.


On Wed, Dec 27, 2017 at 3:46 AM, Ivan Antić  wrote:

> Hi all,
>
> The question is related to: https://developers.google.com/chart/
>
> https://developers.google.com/chart/terms
> https://developers.google.com/terms/
>
> *Pre-question:*
> My company is about to use Google Charts ( Bars, Lines, Pies and GeoCharts
> only ) for internal use.
> We have plans to create web based dashboards for various reports using our
> own bootstrap admin theme, where the charts are just a part of it.
>
> *Question:*
> *1. *Are we allowed to use Google Charts for our company ( commercial use
> ) ?.
> *2.* Are we allowed to charge our clients for Web Dashboards made?. where
> the google charts are included to show reports and data?
>
>
> Thanks,
> Ivan
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to google-visualization-api@
> googlegroups.com.
> Visit this group at https://groups.google.com/
> group/google-visualization-api.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-visualization-api/b9ef327b-c1de-45f7-b422-
> 148737b8e3e8%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJM-9qEZOnBWzKQd0FE%3DHZqZ2bEDP0bQC08CCXYkXyVjKw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts - Terms of use

2017-12-27 Thread Ivan Antić
Hi all,

The question is related to: https://developers.google.com/chart/

https://developers.google.com/chart/terms
https://developers.google.com/terms/

*Pre-question:*
My company is about to use Google Charts ( Bars, Lines, Pies and GeoCharts 
only ) for internal use.
We have plans to create web based dashboards for various reports using our 
own bootstrap admin theme, where the charts are just a part of it.

*Question:*
*1. *Are we allowed to use Google Charts for our company ( commercial use ) 
?.
*2.* Are we allowed to charge our clients for Web Dashboards made?. where 
the google charts are included to show reports and data?


Thanks,
Ivan

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/b9ef327b-c1de-45f7-b422-148737b8e3e8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google charts map

2017-12-14 Thread michel sentenac
How to display a map whith showLine=true but with no marker at each point?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/1184a9d8-834b-432f-a9c2-89c5eff373db%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts with new way of loading(https://www.gstatic.com/charts/loader.js) not working in Safari browser. Any ideas how I can make them work.

2017-11-24 Thread Ashish Lamba
Google Charts with new way of 
loading(https://www.gstatic.com/charts/loader.js) not working in Safari 
browser. Any ideas how I can make them work. Please help I m stuck with 
this.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/e6bc6b3b-15c3-4088-a474-bca8137297c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Google Charts Gallery page is throwing errors currently

2017-11-03 Thread 'Daniel LaLiberte' via Google Visualization API
The gallery seems to be working fine now.  Not sure what happened or how it
got fixed, but thanks for the notice.

On Thu, Nov 2, 2017 at 9:40 AM, 'Andy Freeman' via Google Visualization API
 wrote:

> FYI: Just teaching a session about Google Charts API and the gallery page
> is throwing errors saying the gallery.js file is 404. Direct calls to the
> library are fine though so no biggy, but thought someone would want to know.
>
> https://developers.google.com/chart/interactive/docs/gallery
>
> Andy
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Visualization API" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-visualization-api+unsubscr...@googlegroups.com.
> To post to this group, send email to google-visualization-api@
> googlegroups.com.
> Visit this group at https://groups.google.com/
> group/google-visualization-api.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-visualization-api/2882adf3-a4fa-452a-937f-
> b220ee82620f%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte 
dlalibe...@google.com5CC, Cambridge MA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/CAOtcSJM_%2B9xZrA0iTGEj2Hy4LG1hMfX2vBmbagM4sG-7ZZ7RAg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[visualization-api] Google Charts Gallery page is throwing errors currently

2017-11-02 Thread 'Andy Freeman' via Google Visualization API
FYI: Just teaching a session about Google Charts API and the gallery page 
is throwing errors saying the gallery.js file is 404. Direct calls to the 
library are fine though so no biggy, but thought someone would want to know.

https://developers.google.com/chart/interactive/docs/gallery

Andy

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-visualization-api+unsubscr...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/2882adf3-a4fa-452a-937f-b220ee82620f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


  1   2   3   4   5   >