There is a minor error on the page about POSTing your data to the
chart-API.

In the php-example script, the content type is set like this:
[CODE]header('content-type', 'image/png');[/CODE]
This results in a HTTP500 Error on most web servers

Instead use:
[CODE]header('Content-Type: image/png');[/CODE]
, this wil output a real PNG image

-- 
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.

Reply via email to