Class FieldRemoveEventArgs
The field remove event arguments provide the necessary information about the selected field information before it removes.
Inheritance
System.Object
FieldRemoveEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class FieldRemoveEventArgs : Object
Constructors
FieldRemoveEventArgs()
Declaration
public FieldRemoveEventArgs()
Properties
Axis
Defines the axis name where the selected field would be removed.
Declaration
public string Axis { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Cancel
Defines an option to restrict the field remove operation.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
DataSourceSettings
Defines the current pivot report.
Declaration
public DataOptions DataSourceSettings { get; set; }
Property Value
Type | Description |
---|---|
DataOptions | A DataOptions object that represents the data source settings for the current pivot report. |
FieldItem
Defines the selected field information.
Declaration
public FieldOptions FieldItem { get; set; }
Property Value
Type | Description |
---|---|
FieldOptions | A FieldOptions object that represents the selected field information. |
FieldName
Defines the selected field name to remove from the current pivot reprot.
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |