From 401851de003b22708a4ed23e2983f8e8aa14b53c Mon Sep 17 00:00:00 2001 From: Ismail Ali Date: Sun, 23 Mar 2025 21:00:08 +0100 Subject: [PATCH] fix(chart): Abstand zwischen X-Achsen-Ticks verbessert und letztes Datum sichtbar gemacht MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - allowDataOverflow aktiviert, um letzte X-Achse-Ticks nicht abzuschneiden - rechtes margin (90px) im ComposedChart hinzugefügt - X-Achsen-Tick-Intervalle für bessere Lesbarkeit angepasst --- .../Charts/LoopMeasurementChart/LoopMeasurementChart.tsx | 7 ++++++- config/webVersion.ts | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx index bf310f2..0062e5e 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx @@ -148,11 +148,16 @@ const LoopMeasurementChart = () => { return (
- + { const date = new Date(zeit); return `${date.getDate()}.${date.getMonth() + 1}`; diff --git a/config/webVersion.ts b/config/webVersion.ts index 268bf7d..cd02f3c 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.149"; +const webVersion = "1.6.150"; export default webVersion;