Class FieldDropEventArgs
The field drop event arguments provides the necessary information to customize the drop field and its drop axis.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class FieldDropEventArgs
Constructors
FieldDropEventArgs()
Declaration
public FieldDropEventArgs()
Properties
Cancel
Defines an option to restrict the field drop operation.
Declaration
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
DataSourceSettings
Defines current report.
Declaration
[JsonPropertyName("dataSourceSettings")]
public DataOptions DataSourceSettings { get; set; }
Property Value
| Type | Description |
|---|---|
| DataOptions | A DataOptions object that represents the current report with its associated data source and settings. |
DraggedAxis
Defines the axis where the field has been dragged.
Declaration
[JsonPropertyName("draggedAxis")]
public string DraggedAxis { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
DropAxis
Defines the axis where the field will drop.
Declaration
[JsonPropertyName("dropAxis")]
public string DropAxis { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
DropField
Defines drop field item.
Declaration
[JsonPropertyName("dropField")]
public FieldOptions DropField { get; set; }
Property Value
| Type | Description |
|---|---|
| FieldOptions | The FieldOptions object representing the dropped field. |
DropPosition
Defines drop field position.
Declaration
[JsonPropertyName("dropPosition")]
public int DropPosition { get; set; }
Property Value
| Type | Description |
|---|---|
| int | Accepts an integer value. |
FieldName
Defines drop field name.
Declaration
[JsonPropertyName("fieldName")]
public string FieldName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |