fix(system-charts): Y-Achse mit Einheiten ergänzt (V und °C) für bessere Lesbarkeit
This commit is contained in:
@@ -99,6 +99,16 @@ export const SystemCharts = ({ history }: Props) => {
|
||||
}}
|
||||
options={{
|
||||
...baseOptions,
|
||||
scales: {
|
||||
...baseOptions.scales,
|
||||
y: {
|
||||
...baseOptions.scales.y,
|
||||
title: {
|
||||
display: true,
|
||||
text: "Spannung (V)", // 👉 Einheit hinzugefügt
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: {
|
||||
...baseOptions.plugins,
|
||||
title: { display: true, text: "Systemspannungen" },
|
||||
@@ -132,6 +142,16 @@ export const SystemCharts = ({ history }: Props) => {
|
||||
}}
|
||||
options={{
|
||||
...baseOptions,
|
||||
scales: {
|
||||
...baseOptions.scales,
|
||||
y: {
|
||||
...baseOptions.scales.y,
|
||||
title: {
|
||||
display: true,
|
||||
text: "Temperatur (°C)", // 👉 Einheit hinzugefügt
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: {
|
||||
...baseOptions.plugins,
|
||||
title: { display: true, text: "Systemtemperaturen" },
|
||||
|
||||
Reference in New Issue
Block a user