diff --git a/app/Views/report/custom1.php b/app/Views/report/custom1.php
index f8df03c..307c703 100644
--- a/app/Views/report/custom1.php
+++ b/app/Views/report/custom1.php
@@ -88,7 +88,7 @@
| Test |
- |
+ |
Unit / Method |
|
@@ -101,9 +101,9 @@
-
+
-
+
@@ -695,7 +695,7 @@
month: '',
chart: null,
lastRequestId: 0,
- controlColors: ['#c85a9e', '#d2691e', '#228b22', '#4169e1', '#ff6347', '#9370db'],
+ controlColors: ['#ff0000', '#0000ff', '#228b22', '#4169e1', '#ff6347', '#9370db'],
init() {
const now = new Date();
@@ -1003,12 +1003,12 @@
getMinus3SD(control) {
if (!control.mean || !control.sd) return '-';
- return parseFloat(control.mean) - 3 * parseFloat(control.sd);
+ return parseFloat(control.mean) - 2 * parseFloat(control.sd);
},
getPlus3SD(control) {
if (!control.mean || !control.sd) return '-';
- return parseFloat(control.mean) + 3 * parseFloat(control.sd);
+ return parseFloat(control.mean) + 2 * parseFloat(control.sd);
},
getControlColor(index) {