Supplies information about a TaskMouseEnter or TaskMouseLeave event that is being raised.
Object
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public class GanttTaskMouseEventArgs<TItem>| Name | Description |
|---|---|
| TItem | The type of the data item. |
Supplies information about a TaskMouseEnter or TaskMouseLeave event that is being raised.
public GanttTaskMouseEventArgs<TItem>()The horizontal position (X) of the mouse pointer in viewport coordinates.
public double ClientX { get; set; }
| Type | Description |
|---|---|
| double | The horizontal position (X) of the mouse pointer in viewport coordinates. |
The vertical position (Y) of the mouse pointer in viewport coordinates.
public double ClientY { get; set; }
| Type | Description |
|---|---|
| double | The vertical position (Y) of the mouse pointer in viewport coordinates. |
The data item for which the task bar is created.
public TItem Data { get; set; }
| Type | Description |
|---|---|
| TItem | The data item for which the task bar is created. |
A reference to the DOM element of the task bar that triggered the event.
public ElementReference Element { get; set; }
| Type | Description |
|---|---|
| ElementReference | A reference to the DOM element of the task bar that triggered the event. |