From 7a8eb817f5402c59e73f33cfc0c2c74c1aa7be42 Mon Sep 17 00:00:00 2001 From: SagarRajput-7 Date: Mon, 26 May 2025 05:49:30 +0530 Subject: [PATCH] feat: removed histogram and pie from enhanced legends --- frontend/src/container/NewWidget/RightContainer/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/container/NewWidget/RightContainer/constants.ts b/frontend/src/container/NewWidget/RightContainer/constants.ts index dc8bd1e9c9d4..3735b684a59a 100644 --- a/frontend/src/container/NewWidget/RightContainer/constants.ts +++ b/frontend/src/container/NewWidget/RightContainer/constants.ts @@ -158,9 +158,9 @@ export const panelTypeVsLegendPosition: { [PANEL_TYPES.VALUE]: false, [PANEL_TYPES.TABLE]: false, [PANEL_TYPES.LIST]: false, - [PANEL_TYPES.PIE]: true, + [PANEL_TYPES.PIE]: false, [PANEL_TYPES.BAR]: true, [PANEL_TYPES.TRACE]: false, - [PANEL_TYPES.HISTOGRAM]: true, + [PANEL_TYPES.HISTOGRAM]: false, [PANEL_TYPES.EMPTY_WIDGET]: false, } as const;