Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在工具提示上为大数字添加逗号?
例如 57,574 而不是 57574
谢谢!
formatter是的,您可以使用道具将任何格式化程序函数传递给 Tooltip 组件,例如
formatter
<BarChart> <Tooltip formatter={(value) => new Intl.NumberFormat('en').format(value)} /> </BarChart>
在此处查看文档:http ://recharts.org/en-US/api/Tooltip#formatter
你可以这样做
let number = 57574 number.toLocaleString('en-IN')
资源:MDN