GanttDependencies
Class
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public class GanttDependencies : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseGanttDependencies
Implements:
Inherited Members
Constructors
C#
public GanttDependencies()
Methods
C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
C#
public void Dispose()
Implements:
C#
protected override void OnInitialized()
Overrides:
Properties
Defines the data source of the Dependencies.
C#
[Parameter]
public IEnumerable<object> Data { get; set; }
Defines the Id DataField of the DataSource.
C#
[Parameter]
public string IdField { get; set; }
Fires when a dependency is created.
C#
[Parameter]
public EventCallback<GanttDependencyCreateEventArgs> OnCreate { get; set; }
Fires when a dependency is deleted.
C#
[Parameter]
public EventCallback<GanttDependencyDeleteEventArgs> OnDelete { get; set; }
Defines the Predecessor Id DataField of the DataSource.
C#
[Parameter]
public string PredecessorIdField { get; set; }
Defines the Successor DataField of the DataSource.
C#
[Parameter]
public string SuccessorIdField { get; set; }