Take a look at an existing "cht=lxy" chart and check that your data is
correctly formatted.

>From 
>http://code.google.com/apis/chart/docs/gallery/line_charts.html#chart_types
-

chd=t:<line_1_x1>,<line_1_x2>,...|<line_1_y1>,<line_1_y2>,...|
      <line_2_x1>,<line_2_x2>,...|<line_2_y1>,<line_2_y2>,...


Interpreting your CHD parameter based on the above it appears you're
trying to:
- draw a single point at 40283,17
- draw a line from 40282,6 to 40283,4
- draw a single point at 40283,29

XY charts (cht=lxy) do not support single points and, in addition,
your value of 29 is definitely out of your CHDS range.


Some other possibilities as to the problem:
- You are providing data scaling information for your Y axis data but
not your X: try "chds=0,20,40282,40285"

Good luck,
Keith

-- 
You received this message because you are subscribed to the Google Groups 
"Google Chart API" group.
To post to this group, send email to google-chart-...@googlegroups.com.
To unsubscribe from this group, send email to 
google-chart-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-chart-api?hl=en.

Reply via email to