Class QueryChartRowInfoEventArgs<TValue>
To maintain QueryChartRowInfoEventArgs.
Inheritance
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class QueryChartRowInfoEventArgs<TValue> : Object
Type Parameters
Name | Description |
---|---|
TValue | Specifies the type of QueryChartRowInfoEventArgs. |
Constructors
QueryChartRowInfoEventArgs()
Declaration
public QueryChartRowInfoEventArgs()
Properties
Data
Gets the data associated with a row in a QueryChart.
Declaration
public TValue Data { get; }
Property Value
Type | Description |
---|---|
TValue | The data object that is associated with a row in a QueryChart. |
Remarks
The Data property allows you to set or retrieve the data associated with a specific row in a QueryChart. This property is typically used in events or callbacks related to the QueryChart, such as the QueryChartRowInfoEventArgs.
GanttTaskModel
Gets the hierarchy details of a task.
Declaration
public IGanttTaskModel<TValue> GanttTaskModel { get; }
Property Value
Type | Description |
---|---|
IGanttTaskModel<TValue> | An instance of GanttTaskModel. |
Remarks
The GanttTaskModel property represents the hierarchy details of a task in the GanttChart component. This property provides access to an instance of the GanttTaskModel class, which contains information such as the task's ID, parent ID, start date, end date, duration, and other task-related data.
Row
To set Row in QueryChartRowInfoEventArgs.
Declaration
public RowDOM Row { get; set; }
Property Value
Type | Description |
---|---|
RowDOM | The RowDOM object that represents the current row in a QueryChart. |
TaskbarType
Gets the Taskbar Type in a QueryChartRowInfoEventArgs.
Declaration
public string TaskbarType { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts a string value that represents the Taskbar Type. |
Remarks
The TaskbarType property allows you to set or retrieve the taskbar type associated with a specific row in a QueryChart. This property is typically used in events or callbacks related to the QueryChart, such as the QueryChartRowInfoEventArgs.