From 4ae1effb6210a8a2adb175dba5643cdb4cbb962c Mon Sep 17 00:00:00 2001 From: Julius Volz Date: Tue, 4 Mar 2025 23:34:40 +0100 Subject: [PATCH] Bring back vertical grid lines Addressing part of https://github.com/prometheus/prometheus/issues/16162 Signed-off-by: Julius Volz --- web/ui/mantine-ui/src/pages/query/uPlotChartHelpers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/ui/mantine-ui/src/pages/query/uPlotChartHelpers.ts b/web/ui/mantine-ui/src/pages/query/uPlotChartHelpers.ts index ac77fee596..31055058b1 100644 --- a/web/ui/mantine-ui/src/pages/query/uPlotChartHelpers.ts +++ b/web/ui/mantine-ui/src/pages/query/uPlotChartHelpers.ts @@ -339,8 +339,8 @@ export const getUPlotOptions = ( stroke: light ? "#00000010" : "#ffffff20", }, grid: { - show: false, - stroke: light ? "#eee" : "#333", + show: true, + stroke: light ? "#00000010" : "#ffffff20", width: 2, dash: [], },