Hi, I'm trying to figure out if it's even possible to post two series with the same domain, but different data points. Possible it's a little clearer if I show you the table for what I'm trying to do:
['Date1', 'Data1', 'Date2', 'Data2'],
['2/24/2012', 556, '5/12/2012', 734],
['5/7/2012', 4891, '6/16/2012', 999],
['5/28/2012', 987, '7/18/2012', 1023],
['9/5/2012', 1137, '12/16/2012', 3023]
Basically, I want the Date columns to fit to the domain axis, then correspond to the data in the similarly numbered data columns. I haven't figured out a way for Google Code to interpret the Date2 column as a domain series and not a data series; it just throws an error about dissimilar data typing. Any suggestions?