reactjsnivo-react

How to add custom tooltip to nivo chart?


I'm doing a stream chart with Nivo in react.js.

How to customize the tooltip?

The documentation doesn't talk about this point.


Solution

  • in nivo Line chart type case that works for me:

     <ResponsiveLine
      data={data}
      tooltip={point => {
        return <div>{point}</div>;
      }}
    />