[visualization-api] Re: GeoChart Countries being displayed incorrectly

2015-06-01 Thread Daniel Buttery
Looks like a mixup with Country Codes that match 'regional' codes (DE = Delaware, AR = Arkansas). https://jsfiddle.net/23rzy5qv/ GB (UK) works fine as there is no matching regional code, but SE (Sweden) goes to South America. Working fine if you change the country codes to country names, but

[visualization-api] Re: Data not loading on Line Chart - using ASP.NET MVC and jQuery AJAX.

2015-06-01 Thread Daniel Buttery
Hey. First thing I always try if I come across issues like this is to add a chart of type Table to the page, as you can then verify easily exactly the type of data the chart has in case something odd is happening. So at the bottom of your code, add: var tableOptions={}; var dataTable = new

Re: [visualization-api] [GeoChart] Small countries

2015-06-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Diogo, I'm not quite sure what you mean by force onMouseOver to Cape Verde, but the rest of your problem sounds like a common issue. This is generally handled by providing a way of zooming into an area (continent and subcontinent 'region's are probably best), but we do intend to solve this

Re: [visualization-api] Two queries in one chart

2015-06-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Mark, This is certainly possible, but it can get a bit tricky. One straightforward way you could accomplish this is simply by adding all the rows from the second DataTable to the first one, and then sorting it. Here is a jsfiddle sketch for how this might work: http://jsfiddle.net/f3yk43oe/

Re: [visualization-api] Re: Data not loading on Line Chart - using ASP.NET MVC and jQuery AJAX.

2015-06-01 Thread 'Daniel LaLiberte' via Google Visualization API
Daniel, Your suggestion of drawing a Table chart is a good one. But in your example, you forgot to change LineChart to Table, and it would probably be better to rename your dataTable variable as tableChart to avoid confusion with DataTables. Another thing to keep in mind is that when you call

Re: [visualization-api] Re: GeoChart Countries being displayed incorrectly

2015-06-01 Thread 'Sergey Grabkovsky' via Google Visualization API
Hi Diogo, For 'markers' mode, we use Google Maps for geocoding the locations (converting a string location to a latitude and longitude), and so ambiguous locations may not get geocoded as you might expect. Because of this, even though we recommend ISO 3166 codes to be used for 'regions' mode,

Re: [visualization-api] Re: Data not loading on Line Chart - using ASP.NET MVC and jQuery AJAX.

2015-06-01 Thread Daniel Buttery
Very true sir - the coffee obviously hadn't really set in yet. ;) -- 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

[visualization-api] Send google chart with email

2015-06-01 Thread Houssan A. Hijazi
Hi, how i can send the google chart in email like a image? If i send a script is not work. 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

Re: [visualization-api] Send google chart with email

2015-06-01 Thread 'Jon Orwant' via Google Visualization API
https://developers.google.com/chart/interactive/docs/printing Jon On Mon, Jun 1, 2015 at 2:34 PM, Houssan A. Hijazi hussanhij...@gmail.com wrote: Hi, how i can send the google chart in email like a image? If i send a script is not work. thanks -- You received this message because you

[visualization-api] DashBoard Google Chart

2015-06-01 Thread Tim
Really new to Google Chart - and already some issues to set all elements together. Can someone help me to create the entire coding for: Data snapshot: ['Month','Year','Direct entry','External referrer','Search engine','Social media'], ['April',2012,11497,1260,4039,9],

[visualization-api] Google Sheet, Query function doesn't run correctly.

2015-06-01 Thread R. K. Nair
I am using the following query syntax in my google sheet. It doesn't show any results even after modifying the query with 'contains', startswith etc. =QUERY(ResourceUsage2015!C4:F200, select C WHERE F ='Vacation', -1) Any idea why this is happening. I have plenty of data that matches this

Re: [visualization-api] Send google chart with email

2015-06-01 Thread Houssan A. Hijazi
HI, this is not work when i send it to email. thanks Em segunda-feira, 1 de junho de 2015 16:30:06 UTC-3, orw...@google.com escreveu: https://developers.google.com/chart/interactive/docs/printing Jon On Mon, Jun 1, 2015 at 2:34 PM, Houssan A. Hijazi hussan...@gmail.com javascript:

Re: [visualization-api] Send google chart with email

2015-06-01 Thread 'Daniel LaLiberte' via Google Visualization API
Hi Houssan, You can send an image through email where the image was generated by the getImageURI() method. This has to be done in the browser first, after you generate a chart by the normal way, and then you can send the generated image URI out to email. Is that what you tried to do? Can you