Class CalculatedFieldCreateEventArgs
The calcualted field create event arguments provide the necessary information about the calculated field settings before it creates to update the pviot table.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class CalculatedFieldCreateEventArgs
Constructors
CalculatedFieldCreateEventArgs()
Declaration
public CalculatedFieldCreateEventArgs()
Properties
CalculatedField
Defines current calcualted field's infromation that used to modify and update.
Declaration
[JsonPropertyName("calculatedField")]
public CalculatedFields CalculatedField { get; set; }
Property Value
| Type | Description |
|---|---|
| CalculatedFields | A CalculatedFields object that represents the current calculated field's information that is used to modify and update. |
CalculatedFieldSettings
Defines current calculated fields collection in the current pivot report.
Declaration
[JsonPropertyName("calculatedFieldSettings")]
public List<CalculatedFieldSettings> CalculatedFieldSettings { get; set; }
Property Value
| Type | Description |
|---|---|
| List<CalculatedFieldSettings> | A list of CalculatedFieldSettings objects that represents the collection of calculated fields in the current pivot report. |
Cancel
Defines an option to restrict the calculated field create operation.
Declaration
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
DataSourceSettings
Defines current pivot report.
Declaration
[JsonPropertyName("dataSourceSettings")]
public DataOptions DataSourceSettings { get; set; }
Property Value
| Type | Description |
|---|---|
| DataOptions | A DataOptions object that represents the current pivot report. |
FieldName
Defines the field name to create/update the calculated field settings.
Declaration
[JsonPropertyName("fieldName")]
public string FieldName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |