Skip to main content
A newer version of this page is available. .

XRChart.SeriesSorting Property

Gets or sets a value that specifies how series are sorted within the chart control based upon the series names.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v20.2.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Reporting.Core

Declaration

[SRCategory(ReportStringId.CatData)]
public SortingMode SeriesSorting { get; set; }

Property Value

Type Description
SortingMode

A SortingMode enumeration value.

Available values:

Name Description
None

The values are not sorted.

Ascending

The values are sorted in ascending order.

Descending

The values are sorted in descending order.

Remarks

Use the SeriesSorting property to specify the order in which automatically generated series objects are sorted within the chart control based upon the series names. Note that the names of the dynamically created series are taken from the data field specified by the XRChart.SeriesDataMember property.

The sorting order which is applied to the chart control’s series can be visually identified within the chart control’s legend. In some series views (the most obvious example is the bar series) the applied sorting order affects the order in which the chart elements (in particular, bars) that represent data points with an identical argument are displayed within the diagram.

SeriesSorting = Ascending

SeriesSorting_Ascending>

SeriesSorting = Descending

SeriesSorting_Descending

See Also