Hi P, Most applications/APIs that read information from the query string are only expecting a single entry for each query string parameter. For example, "...&chm=123&chm=456&..." would not be handled correctly by most back-end systems.
The Google API expects all CHM entries to be pipe delimited. Changing your URL to use "chm=N*f*,000000,0,-1,10,0|r,006400,0,0.833,0.843|r, 8B008B,0,0.3,0.41" should display what you're expecting. In addition, the URL with combined CHM params works fine (for me) in IE7, so your IE problem might just be an issue with the original URL format (multiple CHM parameters). Regarding rounding in JS, I think the following will work (untested): var repeatingDecimal = 8.3333333; alert( Math.round(repeatingDecimal * 1000) / 1000 ) Cheers, K --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
