Skip to content

Commit

Permalink
Remove padding from bottom of stack bars (#1008)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaked-hayek committed Dec 27, 2023
1 parent 252a678 commit 3d22aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/molecules/GenericBarChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const BarChartContainer: FC<IBarChartBaseProps> = ({ data, textLabel, subtitle,
style={{ fill: blackColor }}
/>
<Tooltip />
{isStacked && <Legend verticalAlign="bottom" align="right" iconType="circle" height={35} />}
{isStacked && <Legend verticalAlign="bottom" align="right" iconType="circle" height={5} />}
{children}
</BarChart>
</ResponsiveContainer>
Expand Down

0 comments on commit 3d22aea

Please sign in to comment.