Defines a dependency between two Gantt tasks.
Object
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
public class GanttDependency<TItem>| Name | Description |
|---|---|
| TItem | The task item type. |
Defines a dependency between two Gantt tasks.
public GanttDependency<TItem>()The predecessor task.
public TItem From { get; set; }
| Type | Description |
|---|---|
| TItem | The predecessor task. |
The successor task.
public TItem To { get; set; }
| Type | Description |
|---|---|
| TItem | The successor task. |
The dependency type. Defaults to FinishToStart.
public GanttDependencyType Type { get; set; }
| Type | Description |
|---|---|
| GanttDependencyType | The dependency type. Defaults to FinishToStart. |