feat: Filter für Quelle

This commit is contained in:
Ismail Ali
2025-06-25 22:49:02 +02:00
parent dcddbe989a
commit 2d8c51525d
16 changed files with 492 additions and 23 deletions

View File

@@ -84,9 +84,9 @@ export default function AnalogInputsChart({
const chartData = {
datasets: [
{
label: `Messkurve ${selectedInput?.label ?? "Eingang"} (${
label: `Messkurve ${selectedInput?.label ?? "Eingang"} [${
selectedInput?.unit ?? ""
})`,
}]`,
data: inputData.map((point: any) => ({
x: point.t,
y: point.m,
@@ -147,7 +147,7 @@ export default function AnalogInputsChart({
y: {
title: {
display: true,
text: `Messwert (${selectedInput?.unit ?? ""})`,
text: `Messwert [${selectedInput?.unit ?? ""}]`,
},
},
},