I'm doing a stream chart with Nivo in react.js.
How to customize the tooltip?
The documentation doesn't talk about this point.
in nivo Line chart type case that works for me:
<ResponsiveLine
data={data}
tooltip={point => {
return <div>{point}</div>;
}}
/>