import React from "react"; import { BarChart, Bar, XAxis, YAxis, Tooltip, Legend,Label,CartesianGrid ,ResponsiveContainer } from "recharts"; export default function WER_GenderChart({graphData,title,labelY,xAxis,yAxis,angle,bMargin,height,colorStroke,colorFill}) { const data = graphData; console.log(graphData,); let margins = { top: 30, right: 20, left: 0, bottom: bMargin } return (