feat: Linienchart ohne gefüllte Bereiche dargestellt

- `fill: false` für alle Datensätze gesetzt, sodass keine Flächen unter den Linien gezeichnet werden
- Diagramm zeigt jetzt nur die Linien für Minimum, Maximum, Mittelwert und Durchschnitt
- Verbesserte Lesbarkeit durch Entfernen der Hintergrundfüllung
This commit is contained in:
ISA
2025-02-20 15:28:52 +01:00
parent 9da7952a87
commit 53b04a72b3
2 changed files with 6 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ const LoopMeasurementChart = () => {
})), })),
borderColor: "rgba(75, 192, 192, 1)", borderColor: "rgba(75, 192, 192, 1)",
backgroundColor: "rgba(75, 192, 192, 0.2)", backgroundColor: "rgba(75, 192, 192, 0.2)",
fill: true, fill: false,
}, },
{ {
label: "Messwert Maximum (kOhm)", label: "Messwert Maximum (kOhm)",
@@ -54,7 +54,7 @@ const LoopMeasurementChart = () => {
})), })),
borderColor: "rgba(192, 75, 75, 1)", borderColor: "rgba(192, 75, 75, 1)",
backgroundColor: "rgba(192, 75, 75, 0.2)", backgroundColor: "rgba(192, 75, 75, 0.2)",
fill: true, fill: false,
}, },
]; ];
@@ -71,7 +71,7 @@ const LoopMeasurementChart = () => {
})), })),
borderColor: "rgba(255, 165, 0, 1)", // Orange borderColor: "rgba(255, 165, 0, 1)", // Orange
backgroundColor: "rgba(255, 165, 0, 0.2)", backgroundColor: "rgba(255, 165, 0, 0.2)",
fill: true, fill: false,
}); });
} }
@@ -88,7 +88,7 @@ const LoopMeasurementChart = () => {
})), })),
borderColor: "rgba(75, 75, 192, 1)", // Blau borderColor: "rgba(75, 75, 192, 1)", // Blau
backgroundColor: "rgba(75, 75, 192, 0.2)", backgroundColor: "rgba(75, 75, 192, 0.2)",
fill: true, fill: false,
}); });
} else if ( } else if (
selectedMode !== "DIA2" && selectedMode !== "DIA2" &&
@@ -102,7 +102,7 @@ const LoopMeasurementChart = () => {
})), })),
borderColor: "rgba(75, 75, 192, 1)", // Blau borderColor: "rgba(75, 75, 192, 1)", // Blau
backgroundColor: "rgba(75, 75, 192, 0.2)", backgroundColor: "rgba(75, 75, 192, 0.2)",
fill: true, fill: false,
}); });
} }

View File

@@ -6,5 +6,5 @@
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen). 2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
*/ */
const webVersion = "1.6.71"; const webVersion = "1.6.72";
export default webVersion; export default webVersion;