[Feature] Can we freely decide between thousandSeparator and decimalSeparator?
What problem does this feature solve?
I am a developer serving the Brazilian market, where thousandSeparator is '.' , decimalSeparator is ',', now it is possible to use formatter to reach the target, but it is not possible to configure it globally, which is a pain
https://github.com/apache/echarts/blob/master/src/util/format.ts#L32
What does the proposed API look like?
const opts = { formatterConfig: { thousandSeparator: ',', decimalSeparator: '.', }, }
Try registerLocale with /src/i18n/langPT-br.ts ?
Try registerLocale with /src/i18n/langPT-br.ts ?
Yes, langPT-br.ts is just a copywriting change, but the actual number display is still the standard in English, for example the number "1,000.99", in Brazil would be written as '1.000,99', I hope to achieve this effect
How about this Demo Code ?
How about this Demo Code ?
Yes, but this requires specifying the formatter in each place where it is used, which is painful to maintain when there are many charts, so I hope there is a global configuration place
This issue has been automatically marked as stale because it did not have recent activity. It will be closed in 7 days if no further activity occurs. If you wish not to mark it as stale, please leave a comment in this issue.
Still Needed
Still needed
