From 2ed7f152b700ad3a4f09ed5ff1c8a864ba2a1e5e Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Wed, 21 May 2025 09:25:59 +0200 Subject: [PATCH] Use the same graph style in app graphs as in system graphs --- dashboard/src/components/app/Graphs.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dashboard/src/components/app/Graphs.vue b/dashboard/src/components/app/Graphs.vue index 74f4b64bf..eb66244e3 100644 --- a/dashboard/src/components/app/Graphs.vue +++ b/dashboard/src/components/app/Graphs.vue @@ -84,10 +84,11 @@ function fillGraph(element, contents, chartPropertyName, divisor, max, format, f backgroundColor: backgroundColors[index], borderColor: borderColors[index], borderWidth: 1, - radius: 0, + pointRadius: 0, data: datapoints, - cubicInterpolationMode: 'monotone', - tension: 0.4 + tension: 0.4, + showLine: true, + fill: true, }); });