From 640dac1eff50229b5b945791d1e99488c707be91 Mon Sep 17 00:00:00 2001 From: Fardin Mustaque <105560328+fardin-developer@users.noreply.github.com> Date: Fri, 27 Dec 2024 16:51:58 +0530 Subject: [PATCH] fix: Big Number side cut fixed (#31407) Co-authored-by: Geido <60598000+geido@users.noreply.github.com> --- .../src/BigNumber/BigNumberViz.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx index 04c6e74c69e33..d7882ccdb6c15 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx +++ b/superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx @@ -120,7 +120,7 @@ class BigNumberVis extends PureComponent { className="kicker" style={{ fontSize, - height: maxHeight, + height: 'auto', }} > {text} @@ -156,7 +156,7 @@ class BigNumberVis extends PureComponent { document.body.append(container); const fontSize = computeMaxFontSize({ text, - maxWidth: width - 8, // Decrease 8px for more precise font size + maxWidth: width * 0.9, // reduced it's max width maxHeight, className: 'header-line', container, @@ -174,8 +174,10 @@ class BigNumberVis extends PureComponent {
{ document.body.append(container); fontSize = computeMaxFontSize({ text, - maxWidth: width, + maxWidth: width * 0.9, // max width reduced maxHeight, className: 'subheader-line', container, @@ -356,6 +358,7 @@ export default styled(BigNumberVis)` position: relative; line-height: 1em; white-space: nowrap; + margin-bottom:${theme.gridUnit * 2}px; span { position: absolute; bottom: 0;