Your graphvol() code is putting a comma at the end of every row, which 
results in an extra comma at the end of the javascript array.  IE doesn't 
like these errant commas.  You could fix the function by replacing your 
while loop with something like this:

$output = array();
while($data = mysql_fetch_array($result)) {
    $output[] = '[\''.eregi_replace('([0-9].*)-([0-9].*)-([0-9].*)' 
,'\\3-\\2',$data[0]).'\', '.$data[1].']';
}
echo implode(',', $output);

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/HObT56F1X6gJ.
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-visualization-api?hl=en.

Reply via email to