Skip to content
Snippets Groups Projects
Unverified Commit 2c14c7da authored by Ryan Laurie's avatar Ryan Laurie Committed by GitHub
Browse files

scientific notation obeys custom separators (#21824)

parent f10f3456
No related branches found
No related tags found
No related merge requests found
......@@ -208,7 +208,10 @@ function formatNumberScientific(value, options) {
if (options.maximumFractionDigits) {
value = d3.round(value, options.maximumFractionDigits);
}
const exp = value.toExponential(options.minimumFractionDigits);
const exp = replaceNumberSeparators(
value.toExponential(options.minimumFractionDigits),
options?.number_separators,
);
if (options.jsx) {
const [m, n] = exp.split("e");
return (
......
......@@ -123,6 +123,19 @@ describe("formatting", () => {
expect(formatNumber(123456.78, options)).toEqual("1.2e+5");
expect(formatNumber(-123456.78, options)).toEqual("-1.2e+5");
});
it("should obey custom separators in scientific notiation", () => {
const options = {
compact: true,
number_style: "scientific",
number_separators: ",.",
};
expect(formatNumber(0, options)).toEqual("0,0e+0");
expect(formatNumber(0.0001, options)).toEqual("1,0e-4");
expect(formatNumber(0.01, options)).toEqual("1,0e-2");
expect(formatNumber(0.5, options)).toEqual("5,0e-1");
expect(formatNumber(123456.78, options)).toEqual("1,2e+5");
expect(formatNumber(-123456.78, options)).toEqual("-1,2e+5");
});
it("should format currency values", () => {
const options = {
compact: true,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment