Class FieldDragStartEventArgs
The field drag start event arguments provides the necessary information about the drag field and its axis.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class FieldDragStartEventArgs
Constructors
FieldDragStartEventArgs()
Declaration
public FieldDragStartEventArgs()
Properties
Axis
Defines the axis where the field is dragged.
Declaration
[JsonPropertyName("axis")]
public string Axis { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
Cancel
Defines an option to restrict the field drag 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 | An instance of the DataOptions class representing the current data source settings for the pivot table. |
FieldItem
Defines drag field item.
Declaration
[JsonPropertyName("fieldItem")]
public FieldOptions FieldItem { get; set; }
Property Value
| Type |
|---|
| FieldOptions |
FieldName
Defines drag field name.
Declaration
[JsonPropertyName("fieldName")]
public string FieldName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |