Skip to main content

NumericFormat Enum

Lists the values used to specify the formatting applied to numeric values.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v14.2.dll

#Declaration

public enum NumericFormat

#Members

Name Description
General

Numbers are displayed without any specific format applied to them. The decimal symbol is obtained from your computer's regional settings (e.g., 100).

Scientific

Numbers are displayed using standard scientific notation, based on your computer's regional settings (e.g., 1.00E+002).

FixedPoint

Numbers are displayed as real numeric values (with the number of decimal places specified via the NumericOptions.Precision property), and the decimal separator is obtained from your computer's regional settings (e.g., 100.00).

Currency

Numbers are displayed with the currency format, obtained from your computer's regional settings (e.g., $100).

Percent

Numbers are multiplied by 100, and have a percent sign (%) appended to the right. The decimal part is represented, based on your computer's regional settings (e.g., 100 %).

Number

Numbers are displayed as numeric values, using the number format specified in your computer's regional settings (e.g., 100.00).

#Passed To

You can pass NumericFormat values to the NumericOptions.Format property.

#Remarks

The values listed by the NumericFormat enumeration are used to set the NumericOptions.Format property.

See Also