Hey I think I finally figured out what was going on. The initial data for the chart was read from the database and the points were in the form of Timestamp, float (in java). Since the data doesn't change very often and I wanted to speed it up for testing, I just created a new Date and a random float. I guess flex was expecting Timestamps or maybe it doesn't like Dates from java. But when I went back and generated my new data as Timestamps instead of Dates, it worked!
Thanks again for all the help! --- In [email protected], "netdeep" <[EMAIL PROTECTED]> wrote: > > > Maciek, thanks for all your help. Here is the code snippet arround line 1403 > > > else if (cache[i][field] is Date) > { > for (; i < n; i++) > { > v = cache[i]; > v[convertedField] = v[field].getTime(); // line 1403 > } > } >

