On 2 Mar 2011, at 11:28, charts101 wrote: > Is it possible to make a call to create and save a google chart from a > Unix ksh script? > > I have not found anything in the documention on this.
There doesn't need to be any documentation on it. It's just an http request, so use a command line tool that will fetch an appropriate URL, such as curl or wget. For example: wget -O graph.png "<your google charts URL>" Will result in the google chart being saved in graph.png. You can call that from ksh or any other shell script. Marcus -- You received this message because you are subscribed to the Google Groups "Google Chart API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-chart-api?hl=en.
