Interaktive Datenanalyse für OmnAIView

AI-Gruppe / Auto-Intern GmbH
| Metrik | Beschreibung |
|---|---|
| Min / Max | Extremwerte im Bereich |
| Avg | Arithmetischer Mittelwert |
| RMS | Root Mean Square |
| P2P | Peak-to-Peak Differenz |
// Reaktiver State mit Signals
private readonly _isSelectionMode = signal(false);
private readonly _selectionStartX = signal<number | null>(null);
// Computed Property - automatisch aktualisiert
readonly selectionRect = computed(() => {
const startX = this._selectionStartX();
const endX = this._selectionEndX();
if (startX === null || endX === null) return null;
return { x: Math.min(startX, endX), width: Math.abs(endX - startX) };
});
✓ Alle Anforderungen erfüllt: Bereichsauswahl, Echtzeit-Statistik, Performance <100ms, Multi-Device, Touch-Support