W3cubDocs

/Haxe JavaScript

NumberFormatOptions

package js.lib.intl

import js.lib.intl.NumberFormat

Available on js

Fields

optionaluseGrouping:Null<Bool>

Whether to use grouping separators, such as thousands separators or thousand/lakh/crore separators. The default is true.

optionalstyle:Null<NumberFormatStyle>

The formatting style to use. The default is Decimal.

optionalminimumSignificantDigits:Null<Int>

The minimum number of significant digits to use. Possible values are from 1 to 21; the default is 1.

optionalminimumIntegerDigits:Null<Int>

The minimum number of integer digits to use. Possible values are from 1 to 21; the default is 1.

optionalminimumFractionDigits:Null<Int>

The minimum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number and percent formatting is 0; the default for currency formatting is the number of minor unit digits provided by the ISO 4217 currency code list (2 if the list doesn't provide that information).

optionalmaximumSignificantDigits:Null<Int>

The maximum number of significant digits to use. Possible values are from 1 to 21; the default is 21.

optionalmaximumFractionDigits:Null<Int>

The maximum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number formatting is the larger of minimumFractionDigits and 3; the default for currency formatting is the larger of minimumFractionDigits and the number of minor unit digits provided by the ISO 4217 currency code list (2 if the list doesn't provide that information); the default for percent formatting is the larger of minimumFractionDigits and 0.

optionallocaleMatcher:Null<LocaleMatcher>

The locale matching algorithm to use. The default is BestFit. For information about this option, see the Intl page.

optionalcurrencyDisplay:Null<CurrencyDisplay>

How to display the currency in currency formatting. The default is Symbol.

optionalcurrency:Null<String>

The currency to use in currency formatting. Possible values are the ISO 4217 currency codes, such as "USD" for the US dollar, "EUR" for the euro, or "CNY" for the Chinese RMB — see the Current currency & funds code list. There is no default value; if the style is "currency", the currency property must be provided.

© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/js/lib/intl/NumberFormatOptions.html