Custom Bar Chart - Copy this React, Mui Component to your project
<ThemeProvider theme={theme}> <BarChart series={[ { data: [ 35, 44, 24, 34, 28, 39, 42, 31, 37, 45, 22, 33, 29, 40, ], }, ]} xAxis={[ { data: [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "Jan", "Feb", ], scaleType: "band", }, ]} margin={{ top: 10, bottom: 50, left: 40, right: 10 }} barSize={30} width={1200} height={300} slotProps={{ bar: { rx: 8, // Adjust this value to control the roundness of the corners ry: 8, }, }} sx={{ aspectRatio: "4/1", }} colors={["#1976d2"]} // Change this color to your desired color /> </ThemeProvider>
