feat(analogInputsChart): dynamische Linien je Zeitraum (m/i/a/g)

- Chart zeigt für 'Alle Messwerte' (DIA0) Messwert (m), Minimum (i), Maximum (a)
- Für 'Stündlich' und 'Täglich' (DIA1/DIA2) werden Minimum (i), Maximum (a), Durchschnitt (g) angezeigt
- Farben und Legende entsprechend
This commit is contained in:
ISA
2025-07-21 10:32:41 +02:00
parent f876bef7a3
commit c73b7ec252
6 changed files with 16 additions and 6 deletions

View File

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