Class FieldDroppedEventArgs
The field dropped event arguments provides the necessary information about the dropped field and its dropped axis.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class FieldDroppedEventArgs
Constructors
FieldDroppedEventArgs()
Declaration
public FieldDroppedEventArgs()
Properties
DataSourceSettings
Defines current report.
Declaration
[JsonPropertyName("dataSourceSettings")]
public DataOptions DataSourceSettings { get; set; }
Property Value
| Type | Description |
|---|---|
| DataOptions | A DataOptions object that represents the data source settings for the current report. |
DroppedAxis
Defines the axis where the field has been dropped.
Declaration
[JsonPropertyName("droppedAxis")]
public string DroppedAxis { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
DroppedField
Defines the dropped field item.
Declaration
[JsonPropertyName("droppedField")]
public FieldOptions DroppedField { get; set; }
Property Value
| Type | Description |
|---|---|
| FieldOptions | A FieldOptions object that represents the dropped field item. |
DroppedPosition
Defines the position where the field has been dropped.
Declaration
[JsonPropertyName("droppedPosition")]
public int DroppedPosition { get; set; }
Property Value
| Type | Description |
|---|---|
| int | Accepts an integer value. |
FieldName
Defines the dropped field name.
Declaration
[JsonPropertyName("fieldName")]
public string FieldName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |