Hello !
I'm trying to change the currency symbol in my heatmap chart's data labels from $ to €. My current format is %{z:$.2f}
. Where's the best place to configure d3.formatLocale
in a Retool app to apply the Euro format?
Code I'm trying to adapt from D3 docs:
const locale = d3.formatLocale({
currency: ["€", ""]
});
Has anyone successfully implemented this? Any guidance on where to put this configuration would be helpful.
Thanks for your help!