Skip to main content
A newer version of this page is available. .

DataItemNumericFormat Class

Contains format settings for numeric values.

Declaration

export class DataItemNumericFormat extends SerializableModel

Remarks

The DataItemNumericFormat class provides format settings for numeric values, including the precision, unit, currency and format type.

To access numeric format settings, use the DataItem.NumericFormat property.

constructor

Initializes a new instance of the DataItemNumericFormat class.

Declaration

constructor(
    modelJson?: any,
    serializer?: DevExpress.Analytics.Utils.ModelSerializer
)

Parameters

Name Type Description
modelJson any

A JSON object used for dashboard deserialization. Do not pass this parameter directly.

serializer ModelSerializer

An object used for dashboard deserialization. Do not pass this parameter directly.

Properties

currencyCultureName Property

Gets or sets the name of a culture that defines the currency symbol and format.

Declaration

currencyCultureName: ko.Observable<string>

Property Value

Type Description
Observable<string>

A string that specifies the name of a culture that defines the currency format settings.

Remarks

If the currencyCultureName property is set to null (Nothing in Visual Basic), the currency symbol and format are defined by the currencyCultureName property. For a list of culture names, refer to the Available Language Packs for Windows Microsoft topic.

formatType Property

Specifies the format type for numeric values.

Declaration

formatType: ko.Observable<DataItemNumericFormatType>

Property Value

Type Description
Observable<DataItemNumericFormatType>

A DataItemNumericFormatType value that specifies the format type for numeric values.

includeGroupSeparator Property

Gets or sets whether separators should be inserted between digit groups.

Declaration

includeGroupSeparator: ko.Observable<boolean>

Property Value

Type Description
Observable<boolean>

true, to insert separators between digit groups; otherwise, false.

precision Property

Gets or sets the number of fractional digits that should be displayed.

Declaration

precision: ko.Observable<number>

Property Value

Type Description
Observable<number>

An integer value that specifies the number of fractional digits that should be displayed.

unit Property

Specifies the unit to which numeric values should be converted.

Declaration

unit: ko.Observable<DataItemNumericUnit>

Property Value

Type Description
Observable<DataItemNumericUnit>

A DataItemNumericUnit value that specifies the unit to which numeric values should be converted.

Methods

getInfo Method

For internal use.

Declaration

getInfo(): DevExpress.Analytics.Utils.ISerializationInfoArray

Returns

Type Description
ISerializationInfoArray

An array of objects that provide serialization info.