Re: [visualization-api] Sheet Examples Do Not Work

2017-10-13 Thread 'Ray Thomas' via Google Visualization API
It works for me in Chrome 61, Firefox 55, IE 11 and Edge 40.

I don't know is this applies to you, but a colleague was once unable to 
view any Google Chart in Chrome but that was because of some extension she 
had installed.

I copied and pasted your code to http://brisray.com/test/werner.htm 


-- 
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/11530e7b-98bc-4750-a23c-f28e34f00612%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Sheet Examples Do Not Work

2017-10-13 Thread Jeremy Werner
Is anyone else able to replicate this issue? I have tried Firefox, Safari 
and Chrome. None of those browsers work

On Wednesday, October 11, 2017 at 9:51:29 AM UTC-4, Jeremy Werner wrote:
>
>
> 
> I am able to see this in fiddle and my chrome browser is up to date. 
> However, I am still unable to see it. I am not sure what else I can do
>
> On Wednesday, October 11, 2017 at 9:42:22 AM UTC-4, Daniel LaLiberte wrote:
>>
>> Hi Jeremy,
>>
>> Does it work here for you (as it does for me):  
>> https://jsfiddle.net/dlaliberte/c4kgrqgs/
>> I copied the text you posted exactly.
>>
>> Check in your browser's debugger or developer console to see if there are 
>> any error messages.
>>
>> If you are still seeing a problem, it might be due to your particular 
>> browser, caching issues, or proxy servers.  Perhaps some plugins could 
>> interfere as well.  Give us the details.
>>
>>
>> On Wed, Oct 11, 2017 at 9:21 AM, Jeremy Werner  
>> wrote:
>>
>>> I have just started looking into using Google Charts and the first 
>>> example that is used right on the page does not load for me. The directions 
>>> say to put the script into an HTML file and you can load it in your 
>>> browser. Upon creating an HTML file with this code, it just loads a blank 
>>> page.
>>>
>>> 
>>>   
>>> 
>>> https://www.gstatic.com/charts/loader.js";>
>>> 
>>>
>>>   // Load the Visualization API and the corechart package.
>>>   google.charts.load('current', {'packages':['corechart']});
>>>
>>>   // Set a callback to run when the Google Visualization API is 
>>> loaded.
>>>   google.charts.setOnLoadCallback(drawChart);
>>>
>>>   // Callback that creates and populates a data table,
>>>   // instantiates the pie chart, passes in the data and
>>>   // draws it.
>>>   function drawChart() {
>>>
>>> // Create the data table.
>>> var data = new google.visualization.DataTable();
>>> data.addColumn('string', 'Topping');
>>> data.addColumn('number', 'Slices');
>>> data.addRows([
>>>   ['Mushrooms', 3],
>>>   ['Onions', 1],
>>>   ['Olives', 1],
>>>   ['Zucchini', 1],
>>>   ['Pepperoni', 2]
>>> ]);
>>>
>>> // Set chart options
>>> var options = {'title':'How Much Pizza I Ate Last Night',
>>>'width':400,
>>>'height':300};
>>>
>>> // Instantiate and draw our chart, passing in some options.
>>> var chart = new 
>>> google.visualization.PieChart(document.getElementById('chart_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 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/1091ce42-4519-4b3a-8b18-f4eee59cba71%40googlegroups.com
>>>  
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> -- 
>> Daniel LaLiberte 
>> dlali...@google.com   5CC, 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/26724c35-0071-4864-8e1a-823f6b4f1f1e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Sheet Examples Do Not Work

2017-10-11 Thread Jeremy Werner



I am able to see this in fiddle and my chrome browser is up to date. 
However, I am still unable to see it. I am not sure what else I can do

On Wednesday, October 11, 2017 at 9:42:22 AM UTC-4, Daniel LaLiberte wrote:
>
> Hi Jeremy,
>
> Does it work here for you (as it does for me):  
> https://jsfiddle.net/dlaliberte/c4kgrqgs/
> I copied the text you posted exactly.
>
> Check in your browser's debugger or developer console to see if there are 
> any error messages.
>
> If you are still seeing a problem, it might be due to your particular 
> browser, caching issues, or proxy servers.  Perhaps some plugins could 
> interfere as well.  Give us the details.
>
>
> On Wed, Oct 11, 2017 at 9:21 AM, Jeremy Werner  > wrote:
>
>> I have just started looking into using Google Charts and the first 
>> example that is used right on the page does not load for me. The directions 
>> say to put the script into an HTML file and you can load it in your 
>> browser. Upon creating an HTML file with this code, it just loads a blank 
>> page.
>>
>> 
>>   
>> 
>> https://www.gstatic.com/charts/loader.js";>
>> 
>>
>>   // Load the Visualization API and the corechart package.
>>   google.charts.load('current', {'packages':['corechart']});
>>
>>   // Set a callback to run when the Google Visualization API is 
>> loaded.
>>   google.charts.setOnLoadCallback(drawChart);
>>
>>   // Callback that creates and populates a data table,
>>   // instantiates the pie chart, passes in the data and
>>   // draws it.
>>   function drawChart() {
>>
>> // Create the data table.
>> var data = new google.visualization.DataTable();
>> data.addColumn('string', 'Topping');
>> data.addColumn('number', 'Slices');
>> data.addRows([
>>   ['Mushrooms', 3],
>>   ['Onions', 1],
>>   ['Olives', 1],
>>   ['Zucchini', 1],
>>   ['Pepperoni', 2]
>> ]);
>>
>> // Set chart options
>> var options = {'title':'How Much Pizza I Ate Last Night',
>>'width':400,
>>'height':300};
>>
>> // Instantiate and draw our chart, passing in some options.
>> var chart = new 
>> google.visualization.PieChart(document.getElementById('chart_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 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/1091ce42-4519-4b3a-8b18-f4eee59cba71%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/455b9b3f-0158-4960-82d6-79d3560158d0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [visualization-api] Sheet Examples Do Not Work

2017-10-11 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Jeremy,

Does it work here for you (as it does for me):
https://jsfiddle.net/dlaliberte/c4kgrqgs/
I copied the text you posted exactly.

Check in your browser's debugger or developer console to see if there are
any error messages.

If you are still seeing a problem, it might be due to your particular
browser, caching issues, or proxy servers.  Perhaps some plugins could
interfere as well.  Give us the details.


On Wed, Oct 11, 2017 at 9:21 AM, Jeremy Werner  wrote:

> I have just started looking into using Google Charts and the first example
> that is used right on the page does not load for me. The directions say to
> put the script into an HTML file and you can load it in your browser. Upon
> creating an HTML file with this code, it just loads a blank page.
>
> 
>   
> 
> https://www.gstatic.com/
> charts/loader.js">
> 
>
>   // Load the Visualization API and the corechart package.
>   google.charts.load('current', {'packages':['corechart']});
>
>   // Set a callback to run when the Google Visualization API is loaded.
>   google.charts.setOnLoadCallback(drawChart);
>
>   // Callback that creates and populates a data table,
>   // instantiates the pie chart, passes in the data and
>   // draws it.
>   function drawChart() {
>
> // Create the data table.
> var data = new google.visualization.DataTable();
> data.addColumn('string', 'Topping');
> data.addColumn('number', 'Slices');
> data.addRows([
>   ['Mushrooms', 3],
>   ['Onions', 1],
>   ['Olives', 1],
>   ['Zucchini', 1],
>   ['Pepperoni', 2]
> ]);
>
> // Set chart options
> var options = {'title':'How Much Pizza I Ate Last Night',
>'width':400,
>'height':300};
>
> // Instantiate and draw our chart, passing in some options.
> var chart = new google.visualization.PieChart(
> document.getElementById('chart_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 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/1091ce42-4519-4b3a-8b18-
> f4eee59cba71%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Daniel LaLiberte 
dlalibe...@google.com    5CC, 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/CAOtcSJNpVhdFQODMjBtTPe2KMEo4TDX6AVyz%3D78QWtnHGwMnKA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.