Class
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:

cs-api-definition
public class GanttState<TItem>

Inheritance: objectGanttState<TItem>

Constructors

GanttState()

Declaration

cs-api-definition
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

cs-api-definition
public ICollection<GanttColumnState> ColumnStates { get; set; }

Property Value

ICollection<GanttColumnState>

EditField

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

Declaration

cs-api-definition
public string EditField { get; set; }

Property Value

string

EditItem

Defines the updated item while editing.

Declaration

cs-api-definition
public TItem EditItem { get; set; }

Property Value

TItem

ExpandedItems

Defines the expanded items in the Gantt.

Declaration

cs-api-definition
public ICollection<TItem> ExpandedItems { get; set; }

Property Value

ICollection<TItem>

FilterDescriptors

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

Declaration

cs-api-definition
public ICollection<IFilterDescriptor> FilterDescriptors { get; set; }

Property Value

ICollection<IFilterDescriptor>

InsertedItem

Defines the newly added item.

Declaration

cs-api-definition
public TItem InsertedItem { get; set; }

Property Value

TItem

OriginalEditItem

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

Declaration

cs-api-definition
public TItem OriginalEditItem { get; set; }

Property Value

TItem

ParentItem

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

Declaration

cs-api-definition
public TItem ParentItem { get; set; }

Property Value

TItem

SortDescriptors

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

Declaration

cs-api-definition
public ICollection<SortDescriptor> SortDescriptors { get; set; }

Property Value

ICollection<SortDescriptor>

TreeListWidth

Defines the the TreeList Width in the Gantt.

Declaration

cs-api-definition
public string TreeListWidth { get; set; }

Property Value

string

View

Defines the the selected view of the Gantt.

Declaration

cs-api-definition
public GanttView View { get; set; }

Property Value

GanttView