Class PivotFormatSetting
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
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class PivotFormatSetting : SfOwningComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
PivotFormatSetting()
Declaration
public PivotFormatSetting()
Properties
Currency
It allows to specify the currency code to be used for formatting.
Declaration
[Parameter]
[JsonPropertyName("currency")]
public string Currency { get; set; }
Property Value
| Type |
|---|
| string |
Format
It allows to specify custom number format for formatting.
Declaration
[Parameter]
[JsonPropertyName("format")]
public string Format { get; set; }
Property Value
| Type |
|---|
| string |
MaximumFractionDigits
It allows to specify maximum fraction digits to the formatted value.
Declaration
[Parameter]
[JsonPropertyName("maximumFractionDigits")]
public int MaximumFractionDigits { get; set; }
Property Value
| Type |
|---|
| int |
MaximumSignificantDigits
It allows to specify maximum significant digits to the formatted value.
Declaration
[Parameter]
[JsonPropertyName("maximumSignificantDigits")]
public int MaximumSignificantDigits { get; set; }
Property Value
| Type |
|---|
| int |
MinimumFractionDigits
It allows to specify minimum fraction digits to the formatted value.
Declaration
[Parameter]
[JsonPropertyName("minimumFractionDigits")]
public int MinimumFractionDigits { get; set; }
Property Value
| Type |
|---|
| int |
MinimumIntegerDigits
It allows to specify minimum integer digits to the formatted value.
Declaration
[Parameter]
[JsonPropertyName("minimumIntegerDigits")]
public int MinimumIntegerDigits { get; set; }
Property Value
| Type |
|---|
| int |
MinimumSignificantDigits
It allows to specify minimum significant digits to the formatted value.
Declaration
[Parameter]
[JsonPropertyName("minimumSignificantDigits")]
public int MinimumSignificantDigits { get; set; }
Property Value
| Type |
|---|
| int |
Name
It allows to set the field name to apply format settings.
Declaration
[Parameter]
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
| Type |
|---|
| string |
Type
It allows to specify the type of date formatting either date, dateTime or time.
Declaration
[Parameter]
[JsonPropertyName("type")]
[JsonConverter(typeof(JsonStringEnumConverter))]
public FormatType Type { get; set; }
Property Value
| Type |
|---|
| FormatType |
UseGrouping
It allows to use grouping to the formatted value.
Declaration
[Parameter]
[JsonPropertyName("useGrouping")]
public bool UseGrouping { get; set; }
Property Value
| Type |
|---|
| bool |