From 8abf53acc5e969a2e4d92b35ef2dd9e27a3ba380 Mon Sep 17 00:00:00 2001 From: Terry Tsai Date: Fri, 27 May 2022 16:29:50 -0700 Subject: [PATCH] show bar labels but not legends except in last bar --- .../src/charts/ProportionalBar.tsx | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/spotlight-client/src/charts/ProportionalBar.tsx b/spotlight-client/src/charts/ProportionalBar.tsx index eb0836b3..aa065c6a 100644 --- a/spotlight-client/src/charts/ProportionalBar.tsx +++ b/spotlight-client/src/charts/ProportionalBar.tsx @@ -137,15 +137,14 @@ export default function ProportionalBar({ /> - {showLegend && ( - - {!preview && ( - - {title} - {noData && ", No Data"} - - )} - + + {!preview && ( + + {title} + {noData && ", No Data"} + + )} + {showLegend && ( - - )} + )} + )}