Resolved bug where the chart is showing the start timestamp as the end timestamp.
This commit is contained in:
parent
776f09899d
commit
6357e4519f
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ public class AggregateDataListSqlResult implements SQLResultHandler<ArrayList<Ag
|
||||||
list.add(new AggregateData(previousTimestampEnd+1, "null", username));
|
list.add(new AggregateData(previousTimestampEnd+1, "null", username));
|
||||||
}
|
}
|
||||||
|
|
||||||
list.add(new AggregateData(timestampStart, ""+ (estimatedData/1000.0), username)); //add this data point to list
|
list.add(new AggregateData(timestampEnd, ""+ (estimatedData/1000.0), username)); //add this data point to list
|
||||||
|
|
||||||
//update previous end timestamp
|
//update previous end timestamp
|
||||||
previousTimestampEnd = timestampEnd;
|
previousTimestampEnd = timestampEnd;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue