New to Telerik UI for BlazorStart a free 30-day trial

The class that contains the state of the Telerik Gantt Component.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Type Parameters:

TItem

Syntax:

C#
public class GanttState<TItem>

Inheritance: objectGanttState<TItem>

Constructors

C#
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.

C#
public ICollection<GanttColumnState> ColumnStates { get; set; }

Defines the edit field that is in edit. Used for incell editing.

C#
public string EditField { get; set; }

Defines the updated item while editing.

C#
public TItem EditItem { get; set; }

Defines the expanded items in the Gantt.

C#
public ICollection<TItem> ExpandedItems { get; set; }

Defines the filtering criteria for the Gantt Data. Accepts FilterDescriptor and CompositeFilterDescriptor.

C#
public ICollection<IFilterDescriptor> FilterDescriptors { get; set; }

Defines the newly added item.

C#
public TItem InsertedItem { get; set; }

Defines the original item in the Gantt Data that is in edit.

C#
public TItem OriginalEditItem { get; set; }

Defines the parent of a newly added item. Used when inserting child items.

C#
public TItem ParentItem { get; set; }

Defines the sorting criteria for the Gantt Data. Accepts SortDescriptor.

C#
public ICollection<SortDescriptor> SortDescriptors { get; set; }

Defines the the TreeList Width in the Gantt.

C#
public string TreeListWidth { get; set; }

Defines the the selected view of the Gantt.

C#
public GanttView View { get; set; }