From 23b704ffe0460422468573fa5c7bbabc1a6afb95 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Thu, 21 Jul 2022 21:51:20 -0500 Subject: [PATCH] Fix excessive bottom margin on chart --- web/components/contract/contract-prob-graph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/contract/contract-prob-graph.tsx b/web/components/contract/contract-prob-graph.tsx index bafb84fe..98440ec8 100644 --- a/web/components/contract/contract-prob-graph.tsx +++ b/web/components/contract/contract-prob-graph.tsx @@ -151,7 +151,7 @@ export const ContractProbGraph = memo(function ContractProbGraph(props: { enableGridX={!!width && width >= 800} enableArea areaBaselineValue={isBinary || isLogScale ? 0 : contract.min} - margin={{ top: 20, right: 20, bottom: 65, left: 40 }} + margin={{ top: 20, right: 20, bottom: 25, left: 40 }} animate={false} sliceTooltip={SliceTooltip} />