From d4d58695b5d0f367f22c63ace56e28a8249f7bdf Mon Sep 17 00:00:00 2001 From: ISA Date: Fri, 14 Feb 2025 11:32:29 +0100 Subject: [PATCH] =?UTF-8?q?Statisch=20Messwerte=20f=C3=BCr=20Schleifenmess?= =?UTF-8?q?ung=20Chart?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LoopMeasurementChart.tsx | 19 +++++++++++-------- config/webVersion.ts | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx index 2f42db2..3c3f9eb 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx @@ -10,13 +10,16 @@ const LoopMeasurementChart: React.FC = () => { // Mock-Daten für das Beispiel const chartData = [ - { t: "13-02-2025 15:00:00", i: 60.0, a: 65.0, g: 70.0 }, - { t: "14-02-2025 14:00:00", i: 65.0, a: 65.0, g: 65.0 }, - { t: "14-02-2025 13:00:00", i: 65.0, a: 65.0, g: 65.0 }, - { t: "15-02-2025 12:00:00", i: 65.0, a: 65.0, g: 65.0 }, - { t: "15-02-2025 11:00:00", i: 65.0, a: 65.0, g: 65.0 }, - { t: "16-02-2025 10:00:00", i: 65.0, a: 65.0, g: 65.0 }, - { t: "17-02-2025 09:00:00", i: 65.0, a: 65.0, g: 65.0 }, + { t: "14-02-2025 10:00:00", i: 3.116, a: 3.116, g: 3.116 }, + { t: "14-02-2025 09:00:00", i: 8.116, a: 3.116, g: 15.116 }, + { t: "14-02-2025 08:00:00", i: 3.116, a: 3.116, g: 3.116 }, + { t: "13-02-2025 15:00:00", i: 9.116, a: 21.0, g: 65.0 }, + { t: "13-02-2025 14:00:00", i: 65.0, a: 65.0, g: 65.0 }, + { t: "13-02-2025 13:00:00", i: 65.0, a: 65.0, g: 65.0 }, + { t: "13-02-2025 12:00:00", i: 65.0, a: 65.0, g: 65.0 }, + { t: "13-02-2025 11:00:00", i: 65.0, a: 65.0, g: 65.0 }, + { t: "13-02-2025 10:00:00", i: 65.0, a: 65.0, g: 65.0 }, + { t: "13-02-2025 09:00:00", i: 50.0, a: 30.0, g: 25.0 }, ]; useEffect(() => { @@ -94,7 +97,7 @@ const LoopMeasurementChart: React.FC = () => { display: true, text: "kOhm", }, - min: 50, + min: 0, max: 80, }, }, diff --git a/config/webVersion.ts b/config/webVersion.ts index 943d86c..1051972 100644 --- a/config/webVersion.ts +++ b/config/webVersion.ts @@ -6,5 +6,5 @@ 2: Patch oder Hotfix (Bugfixes oder kleine Änderungen). */ -const webVersion = "1.6.45"; +const webVersion = "1.6.46"; export default webVersion;