From 178469671513a2fdc8cd4e64e5d61106ed808355 Mon Sep 17 00:00:00 2001 From: Pavol Gazda Date: Thu, 5 Jan 2023 21:43:54 +0100 Subject: [PATCH] Remove fill for temperature graph --- reports/graphs/temperature_change.py | 1 - 1 file changed, 1 deletion(-) diff --git a/reports/graphs/temperature_change.py b/reports/graphs/temperature_change.py index 25cf6bc7..2a696772 100644 --- a/reports/graphs/temperature_change.py +++ b/reports/graphs/temperature_change.py @@ -19,7 +19,6 @@ def temperature_change(objects): name=_("Temperature"), x=list(objects.values_list("time", flat=True)), y=list(objects.values_list("temperature", flat=True)), - fill="tozeroy", ) layout_args = utils.default_graph_layout_options()