GanttDataColumn.SortOrder Property
Specifies a column’s sort order.
Namespace: DevExpress.Web.ASPxGantt
Assembly: DevExpress.Web.ASPxGantt.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(ColumnSortOrder.None)]
public virtual ColumnSortOrder SortOrder { get; set; }
Property Value
Type | Default | Description |
---|---|---|
ColumnSortOrder | None | One of enumeration values. |
Available values:
Name | Description |
---|---|
None | No sorting is applied to a column. |
Ascending | Sorts the column in ascending order. |
Descending | Sorts the columns in descending order. |
Remarks
The ASPxGantt allows you to sort data by multiple columns. The SortOrder property specifies a column’s sort order.
<dx:ASPxGantt ID="Gantt" runat="server"...>
...
<SettingsTasksList >
<Columns>
<dx:GanttTextColumn FieldName="Title" AllowSort="True" SortOrder="Ascending" />
</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