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