Search code examples
reactjsrecharts

How to changed hover line width in LineChart rechart


How to make line width more, which appear when hover active with filled dots in LineChart recharts.

enter image description here


Solution

  • I found need just to put cursor props to tooltip:

    <Tooltip cursor={{ stroke: 'red', strokeWidth: 2 }} />
    

    Result:

    enter image description here