feat(analogInputsChart): zeige Minimum (i) und Maximum (a) als zusätzliche Linien im Chart

- Chart zeigt jetzt Messwert (m), Minimum (i, grün) und Maximum (a, rot) für ausgewählten Zeitraum
- Tooltip und Legende angepasst
- Typdefinitionen für Chart
This commit is contained in:
ISA
2025-07-21 10:21:45 +02:00
parent 528773128d
commit 23a3c173dd
7 changed files with 61 additions and 18 deletions

View File

@@ -5,6 +5,8 @@ import { getAnalogInputsHistoryThunk } from "../../thunks/getAnalogInputsHistory
export type AnalogInputsHistoryEntry = {
t: string;
m: number;
i?: number;
a?: number;
};
export interface InputHistoryState {