MindFusion.Charting Programmer's Guide

NumberFormat Enumeration

See Also
 





Specifies formats for numerical values.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public enum NumberFormat

Visual Basic  Copy Code

Public Enumeration NumberFormat

JavaScript  Copy Code

// enum
NumberFormat = {}

 Members

  Member name Description

Currency

Indicates that the number is formatted as a currency value with a currency symbol according to the current regional settings.

Fixed_point

Indicates that the number is formatted as a fixed point number.

Fixed_point_0Digits

Indicates that the number is formatted as a fixed point number with no digits after the decimal point.

Fixed_point_6Digits

Indicates that the number is formatted as a fixed point number with 6 digits after the decimal point.

General

Indicates that the number is formatted as a general number.

General_2Digits

Indicates that the number is formatted as a general format number with two digits.

General_7Digits

Indicates that the number is formatted as a general format number with seven digits.

None

Specifies that the number should not be formatted but drawn as it is.

Number

Indicates that the number will be formatted according to the current regional settings.

Number_4Digits

Indicates that the number is formatted as a general number with four digits after the decimal point.

Percent

Indicates that the number will be formatted as a percent.

Scientific

Indicates that the number will be formatted in scientific format according to the current regional settings.

Scientific_10Digits

Indicates that the number will be formatted in scientific format with ten digits after the decimal point according to the current regional settings.

Scientific_4Digits

Specifies that the number will be formatted in scientific format with four digits after the decimal point according to the current regional settings.

 See Also