From: Michael Tremer Date: Fri, 3 Oct 2025 10:04:42 +0000 (+0000) Subject: graph: Draw all graphs from back to front X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5db55e3b92e77bd712c31b59eb121c46121bc417;p=collecty.git graph: Draw all graphs from back to front Signed-off-by: Michael Tremer --- 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, };