The C# wrapper is producing the URL, but maybe there are some properties you can set/specify to fix the resulting URL... You understand what's happening, right?
Your first data set has values ranging from 0 to 43. The C# wrapper (for whatever reason) decides to use simple encoding which allows values between 0 and 61. Your second data set has a value of 63 which the C# wrapper evidently bases its decision to use extended encoding (allows values between 0 and 4095). Since extended encoding does not automatically scale your data, your graph is displaying the max value of 63 on a Y-axis ranging from 0 to 4095. I have not used the C# wrapper, but possibly you can force the encoding type and also specify min/max values for data scaling. With text encoding you can set data scaling values with the CHDS parameter. With simple and extended encoding you have to scale the data yourself (or possibly via a wrapper). Good luck, 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 -~----------~----~----~----~------~----~------~--~---
