如何将图表条 y 轴的货币值格式化为:
R$ 123.456,00
代替:
R$ 123,456.00
目前我正在使用这个函数来格式化,但不能做这个简单的改变:
var format = d3.format(',.2f'); // Need to change this, but don't know how
chart.yAxis.tickFormat(function(d) {
return "R$ " + format(d);
});
我已经在 D3 文档中搜索过,但找不到任何东西。