From 6aeedb36dec48eb2169578c435ef8b59fe283b32 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Wed, 17 Aug 2022 12:51:54 +0200 Subject: [PATCH] Histogram: Fix panel hide when clicking on legend (#53651) (#53813) (cherry picked from commit 2d391c98d22aaf2d6a85c847acfd938912b619e9) Co-authored-by: Victor Marin <36818606+mdvictor@users.noreply.github.com> --- public/app/plugins/panel/histogram/Histogram.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/panel/histogram/Histogram.tsx b/public/app/plugins/panel/histogram/Histogram.tsx index 16063c8f402..2e68f168002 100644 --- a/public/app/plugins/panel/histogram/Histogram.tsx +++ b/public/app/plugins/panel/histogram/Histogram.tsx @@ -199,7 +199,7 @@ const prepConfig = (frame: DataFrame, theme: GrafanaTheme2) => { colorMode, pathBuilder, //pointsBuilder: config.drawPoints, - show: !customConfig.hideFrom?.vis, + show: !customConfig.hideFrom?.viz, gradientMode: customConfig.gradientMode, thresholds: field.config.thresholds,