From 5db55e3b92e77bd712c31b59eb121c46121bc417 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 3 Oct 2025 10:04:42 +0000 Subject: [PATCH] graph: Draw all graphs from back to front Signed-off-by: Michael Tremer --- src/daemon/graph.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/daemon/graph.c b/src/daemon/graph.c index d1c275a..77e99a7 100644 --- a/src/daemon/graph.c +++ b/src/daemon/graph.c @@ -59,6 +59,10 @@ const char* DEFAULT_RENDER_ARGS[] = { // Add a watermark "--watermark=" PACKAGE_NAME, + // Invert legend order. This way, we can draw graphs from back to front + // to be able to user overlay and transparency. + "--legend-direction=bottomup", + // Sentinel NULL, }; -- 2.47.3