Hi there, Using those pipe symbols as separators can be confusing at first, but you'll get the hang of them with practise. Take another look at the documentation for Axis Labels (http://code.google.com/apis/chart/ labels.html#axis_labels):
"The first label specified is placed at the start of the axis, and the last label specified is placed at the end of the axis. Other labels are uniformly spaced between the first label and the last label." - The API is displaying your data points correctly (locations are correct given your 0-20000 scale), but the label values you specify do not match the APIs spacing (i.e. 10,000 should be right in the middle of the y-axis, not almost at the top). In order to line up your data with the x-axis labels, you'll need to specify the same number of points in both. Your first data set has six points, your second has six, but you're only specifying five labels (not sure if you have too many points or if you're missing the 2004 label). Hope that helps - good luck and have fun, 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=.
