|
@@ -330,6 +330,9 @@ function (angular, _, moment, dateMath) {
|
|
|
dps.push([null, lastTimestamp + periodMs]);
|
|
dps.push([null, lastTimestamp + periodMs]);
|
|
|
}
|
|
}
|
|
|
lastTimestamp = timestamp;
|
|
lastTimestamp = timestamp;
|
|
|
|
|
+ if (options.divideSumByPeriod && stat === 'Sum') {
|
|
|
|
|
+ dp[stat] = dp[stat] / options.period;
|
|
|
|
|
+ }
|
|
|
dps.push([dp[stat], timestamp]);
|
|
dps.push([dp[stat], timestamp]);
|
|
|
});
|
|
});
|
|
|
|
|
|