Skip to main content

GanttDataColumn.SortIndex Property

Specifies the column’s indexed position among sorted columns.

Namespace: DevExpress.Web.ASPxGantt

Assembly: DevExpress.Web.ASPxGantt.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(-1)]
public virtual int SortIndex { get; set; }

Property Value

Type Default Description
Int32 -1

The column’s index.

Remarks

The ASPxGantt allows you to sort data by multiple columns. The first sorted column gets the 0 sort index. The next sorted columns get the 1 index, etc. The SortIndex property allows you to specify the column’s sort index.

<dx:ASPxGantt ID="Gantt" runat="server"...>
    ...
    <SettingsTasksList >
        <Columns>
            <dx:GanttTextColumn FieldName="Title" AllowSort="True" SortIndex="1" />
        </Columns>
    </SettingsTasksList>
</dx:ASPxGantt>

Note

Use the AllowSort (for individual column) or AllowSort (for all columns) properties to allow or deny users to sort data in the Gantt control.

Examples

Online Demos

See Also