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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user