Class GanttDependencyDescriptor
Describes a dependency within the Gantt component.
Inheritance
System.Object
GanttDependencyDescriptor
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class GanttDependencyDescriptor : Object
Constructors
GanttDependencyDescriptor()
Declaration
public GanttDependencyDescriptor()
Properties
DataItem
The model associated with this dependency.
Declaration
public object DataItem { get; set; }
Property Value
System.Object
|
PredecessorId
The id of the predecessor.
Declaration
public object PredecessorId { get; set; }
Property Value
System.Object
|
SuccessorId
The id of the successor.
Declaration
public object SuccessorId { get; set; }
Property Value
System.Object
|
Type
The type of the dependency. See https://docs.telerik.com/blazor-ui/components/gantt/dependencies/types for more information.
Declaration
public GanttDependencyType Type { get; set; }
Property Value
GanttDependencyType
|