Class FormatSettings
Allows specific fields used to display the values with specific format that used to be displayed in the pivot table.
For example, to display a specific field with currency formatted values in the pivot table, the set the format
property to be C.
Inheritance
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class FormatSettings : Object
Constructors
FormatSettings()
Declaration
public FormatSettings()
Properties
AltSymbol
Species which currency symbol to consider.
Declaration
public string AltSymbol { get; set; }
Property Value
Type |
---|
System.String |
Calendar
Specifies the calendar mode other than gregorian.
Declaration
public string Calendar { get; set; }
Property Value
Type |
---|
System.String |
Currency
Specifies the currency code to be used for formatting.
Declaration
public string Currency { get; set; }
Property Value
Type |
---|
System.String |
Format
Specifies custom number format for formatting.
Declaration
public string Format { get; set; }
Property Value
Type |
---|
System.String |
IsServerRendered
Enable server side date formating.
Declaration
public bool IsServerRendered { get; set; }
Property Value
Type |
---|
System.Boolean |
MaximumFractionDigits
Specifies maximum fraction digits in formatted value.
Declaration
public int MaximumFractionDigits { get; set; }
Property Value
Type |
---|
System.Int32 |
MaximumSignificantDigits
Specifies maximum significant digits in formatted value.
Declaration
public int MaximumSignificantDigits { get; set; }
Property Value
Type |
---|
System.Int32 |
MinimumFractionDigits
Specifies minimum fraction digits in formatted value.
Declaration
public int MinimumFractionDigits { get; set; }
Property Value
Type |
---|
System.Int32 |
MinimumIntegerDigits
Specifies minimum integer digits in formatted value.
Declaration
public int MinimumIntegerDigits { get; set; }
Property Value
Type |
---|
System.Int32 |
MinimumSignificantDigits
Specifies minimum significant digits in formatted value.
Declaration
public int MinimumSignificantDigits { get; set; }
Property Value
Type |
---|
System.Int32 |
Name
It allows to set the field name to apply format settings.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |
Type
It allows to set the type as date or number or custom to the specified field for apply formatting. The types are: Number - Defines format type as 'Number' for numeric type field. DateTime - Defines format type as 'DateTime' for date type field.
Declaration
public FormatType Type { get; set; }
Property Value
Type |
---|
FormatType |
UseGrouping
Specifies whether to use grouping or not in formatted value,.
Declaration
public bool UseGrouping { get; set; }
Property Value
Type |
---|
System.Boolean |