diff --git a/module/execution/model.php b/module/execution/model.php index c72f62c2a5..006e025df4 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -4261,7 +4261,7 @@ class executionModel extends model $days = count($dateList) - 1; $rate = $days ? $firstTime / $days : ''; $baselineJSON = '['; - foreach($dateList as $i => $date) $baselineJSON .= round(($days - $i) * (float)$rate, 1) . ','; + foreach($dateList as $i => $date) $baselineJSON .= round(($days - $i) * (float)$rate, 2) . ','; $baselineJSON = rtrim($baselineJSON, ',') . ']'; $chartData['labels'] = $this->report->convertFormat($dateList, DT_DATE5);