You're using text encoding (chd=t:...) and data scaling (chds=...) which is working great. You've specified a 0 - 9.9 value range for the x-axis and based on that you set your CHG parameter to use a step size of 1. The documentation doesn't specify one way or the other, but the API is definitely expecting step size and offset values based on a chart area size of 100.
If you make the following changes, things should look fine: chxr=0,0,10,1 (10 instead of 9.9) chds=0,10,1,10 (10 instead of 9.9) chg=10,0,1,0 (step size of 10) 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 -~----------~----~----~----~------~----~------~--~---
