Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.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