Class RVNumberFormattingSpec
The class representing the formatting options used for numeric dashboard data.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public class RVNumberFormattingSpec : RVFormattingSpec
Constructors
RVNumberFormattingSpec()
Initializes a new instance of the RVNumberFormattingSpec class.
Declaration
public RVNumberFormattingSpec()
RVNumberFormattingSpec(RVNumberFormattingSpec)
Initializes a new instance of the RVNumberFormattingSpec class from other instance.
Declaration
public RVNumberFormattingSpec(RVNumberFormattingSpec other)
Parameters
Type | Name | Description |
---|---|---|
RVNumberFormattingSpec | other | The instance of type RVNumberFormattingSpec to be copied. |
Properties
ApplyMkFormat
The flag indicating whether to apply Million (M) and Thousand (K) formatting, it defaults to false
Declaration
public bool ApplyMkFormat { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
CurrencySymbol
The symbol to be used for currencies
Declaration
public string CurrencySymbol { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DecimalDigits
The number of decimal digits
Declaration
public int DecimalDigits { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
FormatType
The number formatting type
Declaration
public RVDashboardNumberFormattingType FormatType { get; set; }
Property Value
Type | Description |
---|---|
RVDashboardNumberFormattingType |
NegativeFormat
The negative number formatting type
Declaration
public RVDashboardNegativeFormatType NegativeFormat { get; set; }
Property Value
Type | Description |
---|---|
RVDashboardNegativeFormatType |
ShowGroupingSeparator
The flag indicating whether the grouping separator should be shown, it defaults to false
Declaration
public bool ShowGroupingSeparator { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |