Is it possible to add a comma to large numbers on the tooltip?
for example 57,574 instead of 57574
Thanks!
Yes, you can pass any formatter function to the Tooltip component, using the formatter
prop e.g.
<BarChart>
<Tooltip formatter={(value) => new Intl.NumberFormat('en').format(value)} />
</BarChart>
Check out the documentation here: http://recharts.org/en-US/api/Tooltip#formatter
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With