GanttState<TItem>
The class that contains the state of the Telerik Gantt Component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TItem
Syntax:
public class GanttState<TItem>
Inheritance: objectGanttState<TItem>
Constructors
public GanttState()
Properties
Defines the column state of the configured columns in the Gantt's TreeList. Used for changing the indices of the columns and their width.
public ICollection<GanttColumnState> ColumnStates { get; set; }
Defines the edit field that is in edit. Used for incell editing.
public string EditField { get; set; }
EditItem
TItem
Defines the updated item while editing.
public TItem EditItem { get; set; }
ExpandedItems
ICollection<TItem>
Defines the expanded items in the Gantt.
public ICollection<TItem> ExpandedItems { get; set; }
Defines the filtering criteria for the Gantt Data. Accepts FilterDescriptor and CompositeFilterDescriptor.
public ICollection<IFilterDescriptor> FilterDescriptors { get; set; }
InsertedItem
TItem
Defines the newly added item.
public TItem InsertedItem { get; set; }
OriginalEditItem
TItem
Defines the original item in the Gantt Data that is in edit.
public TItem OriginalEditItem { get; set; }
ParentItem
TItem
Defines the parent of a newly added item. Used when inserting child items.
public TItem ParentItem { get; set; }
Defines the sorting criteria for the Gantt Data. Accepts SortDescriptor.
public ICollection<SortDescriptor> SortDescriptors { get; set; }
Defines the the TreeList Width in the Gantt.
public string TreeListWidth { get; set; }