[visualization-api] Re: Charts not getting displayed in email

2014-08-11 Thread ABHI
Thanks Andrew On Friday, August 8, 2014 6:12:29 PM UTC+5:30, Andrew Gallant wrote: Most (if not all) email clients do not support javascript in emails. You can create an image from the chart by drawing it in a browser and calling the #getImageURI method. This creates an image/octet stream

[visualization-api] google geomap for UAE

2014-08-11 Thread jayapal d
I am trying to replicate the example map for UAE to highlight the State. But it doesn't highlight at all. I have tried with various way to pass the data w.r.t to ISO code, but couldn't achieve at all. Full code on http://jsfiddle.net/0o2q0xd7/4/ function drawMap() { var data =

[visualization-api] custom image as data point in scatter chart

2014-08-11 Thread Ananya Ojha
Can we put image as google chart data point? If possible please explain how.. 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

[visualization-api] Re: PHP Server side graph generation

2014-08-11 Thread Andrew Gallant
With the Visualization API, you would need to render the chart in a browser, call the chart's getImageURI method, and send the image/octet stream to your server to save as a .png file that you could then email. You could also use the Image Chart API

[visualization-api] Re: custom image as data point in scatter chart

2014-08-11 Thread Andrew Gallant
You cannot add an image as a data point, but you can use an overlay to position an image on top of the chart: https://google-developers.appspot.com/chart/interactive/docs/overlays On Monday, August 11, 2014 7:43:36 AM UTC-4, Ananya Ojha wrote: Can we put image as google chart data point? If

[visualization-api] Re: google geomap for UAE

2014-08-11 Thread Andrew Gallant
You need to set the resolution option to provinces. Also, the GeoMap visualization is deprecated, you should use the newer GeoChart visualization instead: http://jsfiddle.net/asgallant/0o2q0xd7/7/ On Monday, August 11, 2014 6:56:13 AM UTC-4, jayapal d wrote: I am trying to replicate the

Re: [visualization-api] Re: custom image as data point in scatter chart

2014-08-11 Thread Ananya
Can we use it in scatter chart? On Mon, Aug 11, 2014 at 5:56 PM, Andrew Gallant agall...@google.com wrote: You cannot add an image as a data point, but you can use an overlay to position an image on top of the chart: https://google-developers.appspot.com/chart/interactive/docs/overlays On

Re: [visualization-api] Re: custom image as data point in scatter chart

2014-08-11 Thread Andrew Gallant
Yes, it works exactly the same way with a ScatterChart. On Monday, August 11, 2014 8:27:38 AM UTC-4, Ananya Ojha wrote: Can we use it in scatter chart? On Mon, Aug 11, 2014 at 5:56 PM, Andrew Gallant agal...@google.com javascript: wrote: You cannot add an image as a data point, but you

[visualization-api] Re: Inserting Hyperlinks into a Google Chart Timeline

2014-08-11 Thread Jonathan Matthew Beck
I request implementation of this feature as well. Additionally I request the css column for charts of type Timeline. I'm subscribing to this thread in hope of updates. Thank you! On Friday, December 20, 2013 9:11:15 AM UTC-5, Gregory Koutrelakos wrote: Hello, I currently have a Timeline

Re: [visualization-api] Re: PHP Server side graph generation

2014-08-11 Thread 'Jon Orwant' via Google Visualization API
Just an update on the Image Chart API: we're not planning to turn off the API in April. It's more that three years ago when we issued the deprecation announcement, we warned users that we *might* turn it off three years later. Right now it's not much of a burden to keep running, so we'll do that.

[visualization-api] New Sheets setQuery Select Where for dates help needed

2014-08-11 Thread Steve Webster
Need some query.setQuery help when using new Google Sheets. var selectStatement = 'SELECT A, B, C WHERE A = 1/9/2014 '; // A is date column with format 1/1/2014 console.log(Select= +selectStatement); query.setQuery(selectStatement); Syntax is successful, but results are nothing. -- You

[visualization-api] Re: New Sheets setQuery Select Where for dates help needed

2014-08-11 Thread Steve Webster
Here is a snippet screenshot of column A. Here are results *without* the WHERE clause to show available data: On Monday, August 11, 2014 1:38:42 PM UTC-4, Steve Webster wrote: Need some query.setQuery help when using new Google Sheets. var selectStatement = 'SELECT A, B, C WHERE A =

[visualization-api] Re: New Sheets setQuery Select Where for dates help needed

2014-08-11 Thread Andrew Gallant
To compare a date, you have to use a date literal, which has the format date '-MM-dd'. Your query should look like this: var selectStatement = 'SELECT A, B, C WHERE A = date 2014-01-09 '; (assuming your original dates are in the format M/d/) On Monday, August 11, 2014 1:54:19 PM