Controlling Space Between Bars in MUI Bar Chart
You have several options depending on whether you're using the Charts component from @mui/x-charts or another MUI-based charting library.
For @mui/x-charts (MUI X Charts)
<BarChart
series={[
{
data: [35, 44, 24, 34],
barSize: 30
}
]}
margin={{ left: 70, right: 70 }}
slotProps={{
bar: {
rx: 4,
ry: 4, },
}}
width={600}
height={300}
/>