Hi,
I made a research on this group and I was surprised not to find anything about this, but it looks like there is a 1-month shift between the data sent to the script and thdata displayed.
For example, in the
Offline Example, we can read that in the script:
d = new Date(2010, 9, 23, 20, 0, 0);
for (i = 0; i < 100; i++) {
dataset1.data.push({
'date': new Date(d),
'value': functionA(i)
});
d.setMinutes(d.getMinutes() + 1);
So the wave should start the 23rd of
September 2010 at 20:00 and then there is 1 point per minute, but when I look at the graph generated, it starts the 23rd of
October!
This is quite problematic!
I am the only one to see this problem? Do you have any solution?
Thanks.