I have an issue with the BarChart Stacked component from Recharts. I don't want to have this whitespace between these two bars.
I tried to add a conditional rendering with the Cell component, but there is no radius property.
<Bar dataKey="savedGain" stackId="a" fill="url(#colorUv_blue)"
name="Secured gain with AB Tasty" stroke={false}
barSize={20} radius={[25, 25, 0, 0]} strokeWidth={4} />
<Bar dataKey="gain" stackId="a" fill="url(#colorUv_turquoise)"
name="Uplift with AB Tasty" stroke={false}
barSize={20} strokeWidth={4} radius={[25, 25, 0, 0]} barCategoryGap={0} />
Feel free to edit.
EDIT: I tried the following tuto, but i can't modify the border radius..
