Recharts: Turn off background hover for bar charts
You can use the cursor prop on the <Tooltip /> to achieve what you need: <Tooltip cursor={{fill: ‘#f00’}} /> Here‘s a working fiddle I made based on some example from their docs. You can simply use transparent as a value for the fill property. const {BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, Legend} = Recharts; const … Read more