Open GoogleCodeExporter opened 8 years ago
Original comment by dnsch...@gmail.com
on 5 Jun 2012 at 4:17
The provided fix does not work if your point size (ps) is different than 2. If
that's your case, replace :
//push a null value into both series
threspoints.push(x);
threspoints.push(y);
newpoints.push(x);
newpoints.push(y);
with :
//push null values for both series.
for (j = 0; j < ps; j++) {
newpoints.push(null);
threspoints.push(null);
}
That way, no matter what's your point size, you will add enough null values.
Original comment by Maxime.M...@gmail.com
on 4 Jul 2012 at 5:44
Original issue reported on code.google.com by
datamys...@gmail.com
on 18 Apr 2012 at 3:12Attachments: