GanttColumnFactory
Properties
Gantt - Gantt
If set to false the widget will not bind to the data source during initialization. In this case data binding will occur when the change event of the data source is fired. By default the widget will bind to the data source specified in the configuration.
Methods
Group(System.Action)
Defines a group of columns.
Parameters
configurator - System.Action<GanttColumnFactory>
The action that configures the group columns.
RETURNS
A GanttGroupColumnBuilder instance that can be used to configure the group column.
Bound(System.Linq.Expressions.Expression)
Defines a bound column.
Parameters
expression - System.Linq.Expressions.Expression<Func>
The member expression.
RETURNS
A GanttBoundColumnBuilder instance that can be used to configure the bound column.
Bound(System.String)
Defines a bound column.
Parameters
fieldName - System.String
The field name to which the column will be bound.
RETURNS
A GanttBoundColumnBuilder instance that can be used to configure the bound column.
Bound(System.Type,System.String)
Defines a bound column.
Parameters
memberType - System.Type
The type of the member.
fieldName - System.String
The field name to which the column will be bound.
RETURNS
A GanttBoundColumnBuilder instance that can be used to configure the bound column.
Resources(System.String)
Defines a resource column.
Parameters
fieldName - System.String
The field name for the resource column.
RETURNS
A GanttResourceColumnBuilder instance that can be used to configure the resource column.
Draggable()
Defines a draggable column.
RETURNS
A GanttDraggableColumnBuilder instance that can be used to configure the draggable column.
Add()
Adds an item to the collection
RETURNS
Returns a GanttColumnBuilder with the available configuration options.