Issue #2661 Fix grid time series errors when there is no data.
Former-commit-id:46b8688597
[formerly 2fdb5867131b54f5d74ef3edd8c621c8807d4d99] Former-commit-id:aaa146b2d0
This commit is contained in:
parent
4558fe5862
commit
2c1988017e
1 changed files with 3 additions and 2 deletions
|
@ -322,8 +322,9 @@ public class GridTimeSeriesAdapter extends
|
|||
dataPoint = new XYData(time, value);
|
||||
}
|
||||
}
|
||||
|
||||
data.add(dataPoint);
|
||||
if (dataPoint != null){
|
||||
data.add(dataPoint);
|
||||
}
|
||||
}
|
||||
|
||||
XYDataList list = new XYDataList();
|
||||
|
|
Loading…
Add table
Reference in a new issue