I couldn't make a bar chart responsive. I used react recharts for making this chart. I used ResponsiveContainer, but it didn't worked. My code:
<ResponsiveContainer>
<BarChart width={400} height={600} data={data}>
<Bar dataKey="delivered" fill="#80dead" />
<CartesianGrid stroke="#ccc" />
<XAxis dataKey="name" fontSize="8px" />
<YAxis dataKey="delivered" />
</BarChart>
</ResponsiveContainer>
try remove width and height or pass this props to ResponsiveContainer