[visualization-api] what does a[zc] is not a function mean ?

2015-06-15 Thread Kennet Gliese
I have made a chart using the chartWrapper and by default i use use this code: * NOTE: Data here is just some taken from the chart docs site. var data = google.visualization.arrayToDataTable([ ['Year', 'Sales', 'Expenses', 'Profit'], ['2014', 1000, 400, 200], ['2015', 1170, 460, 250],

[visualization-api] InterpollateNulls issue

2015-06-15 Thread Dimitris S.
Hi, I have been using some line charts in which the data table include some null values. I have set the *InterpolateNulls* option to *false* so that I can display a gap when null value is found. The line chart is displayed correctly i.e. gaps included, when *logscale* is set to *true. *But

[visualization-api] Re: Cannot Access chart.apis.google.com when i using IE 11

2015-06-15 Thread htraish77
Just an update on my side. Changing the API link from http://chart.apis.google.com/chart to http://chart.googleapis.com/chart solved the issue. On Thursday, June 11, 2015 at 2:11:34 PM UTC-4, htra...@gmail.com wrote: Same thing just happened to me. Latest Windows updates updates were just

Re: [visualization-api] AnnotationChart and Bootstrap3

2015-06-15 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Makro, At this point, there is nothing you can do. Even though the AnnotationChart only uses qualified CSS selectors itself, it can be affected by unqualified selectors of other libraries, such as Bootstrap apparently. So we will have to avoid use of generically named classes like

Re: [visualization-api] InterpollateNulls issue

2015-06-15 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Dimitris, What you are seeing is not expected. Could you provide a pointer to a page showing the problem, or copy enough code, data and options to be able to reproduce it? Be careful to spell the interpolateNulls option correctly. On Mon, Jun 15, 2015 at 7:28 AM, Dimitris S.

Re: [visualization-api] what does a[zc] is not a function mean ?

2015-06-15 Thread 'Daniel LaLiberte' via Google Visualization API
Kennet, I tried to recreate the code as you described it, but I am not getting any error. See http://jsfiddle.net/dlaliberte/29tefs26/ The unintelligible error message means that an unexpected error occurred, which we try to avoid, of course. So I would like to find out how your code caused

Re: [visualization-api] Re: Cannot Access chart.apis.google.com when i using IE 11

2015-06-15 Thread 'Daniel LaLiberte' via Google Visualization API
Good that you found a solution. I don't know why this only affects IE11. It would be good if references to chart.apis.google.com/chart could be found and fixed. Do you recall where you found that? On Mon, Jun 15, 2015 at 9:40 AM, htrais...@gmail.com wrote: Just an update on my side.

Re: [visualization-api] Charts cookie usage

2015-06-15 Thread 'Daniel LaLiberte' via Google Visualization API
The dataSourceUrl is typically a google spreadsheet URL as described here: https://developers.google.com/chart/interactive/docs/queries But you can use any service that responds in a similar way, as described here: https://developers.google.com/chart/interactive/docs/dev/implementing_data_source

[visualization-api] Drawing Motion Chart from a Queried Spreadsheet URL

2015-06-15 Thread Ayobami Akanmu
This is the complete code of I am using to draw a motion chart from a Google spreadsheet. I have ensured I format each of the data column to a format that meet the motion chart design. However, I am still getting an error message that reads *Error in Query:Request Timed Out.* The boldened

[visualization-api] How to save Chart in a chartwrwpper to an image

2015-06-15 Thread Mike Pala
I have a chart in a google ChartWrapper which is created by the ChartEditor function loadEditor() { var data = new google.visualization.DataTable(?=$jsonTableA01?) wrapper = new google.visualization.ChartWrapper({ dataTable: data, left:1, options: { 'chartArea':

Re: [visualization-api] How is Scaling Set for Gauge Google Chart?

2015-06-15 Thread 'Daniel LaLiberte' via Google Visualization API
Tony, The math is a very simple linear scale between the min and max, which default to 0 and 100, but you can specify a different min or max with options. On Thu, Jun 11, 2015 at 1:56 PM, Tony Hunter tony.hunte...@gmail.com wrote: Hello, What is the math that calculates the scale/dial for

[visualization-api] AnnotationChart and Bootstrap3

2015-06-15 Thread makro
Hi, I'm trying to create an AnnotationChart on a page including Bootstrap3 css. the problem is that AnnotationChart creates a div with class google-visualization-atl container. container class is a bootstrap's base class for content... so my chart has always wrong margin/padding and it isn't

Re: [visualization-api] Charts cookie usage

2015-06-15 Thread Jeroen de Neef
It seems that I have made a little mistake. I am getting a *Uncaught ReferenceError: dataSourceUrl is not defined *whenever the chart is getting loaded. What should I place at dataSourceUrl? 2015-06-15 19:41 GMT+02:00 Jeroen de Neef jeroe...@gmail.com: Thank you, this works perfectly in the