Skip to main content

RepositoryItemSparklineEdit.PointSortOrder Property

Specifies how data points are sorted.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(ColumnSortOrder.Ascending)]
[DXCategory("Data")]
public ColumnSortOrder PointSortOrder { get; set; }

Property Value

Type Default Description
ColumnSortOrder Ascending

A ColumnSortOrder enumeration value.

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

By default, data points are not sorted within a sparkline. To sort data points, set the name of a data field containing the value to sort by, to the RepositoryItemSparklineEdit.PointSortingMember property, and choose the desired sort order via the PointSortOrder property.

See Also