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

ReportViewBase.ColumnArrangement Property

Specifies the order in which the numbers of intervals in columns are arranged.

Namespace: DevExpress.XtraScheduler.Reporting

Assembly: DevExpress.XtraScheduler.v24.2.Reporting.dll

NuGet Package: DevExpress.Win.SchedulerReporting

#Declaration

[DefaultValue(ColumnArrangementMode.Ascending)]
[XtraSerializableProperty]
public ColumnArrangementMode ColumnArrangement { get; set; }

#Property Value

Type Default Description
ColumnArrangementMode Ascending

A ColumnArrangementMode enumeration representing the order.

Available values:

Name Description
Ascending

Specifies that groups are arranged in ascending order, according to the number of items in a group.

Descending

Specifies that groups are arranged in descending order, according to the number of items in a group.

#Remarks

The report is rendered into columns. A time interval can be split into several columns, and via the ColumnArrangement property, you can specify the order in which the numbers representing the days in interval fractions are displayed. For example, a week can be split into four columns in one of the following ways: 1-1-2-2 (ColumnArrangementMode.Ascending) or 2-2-1-1 (ColumnArrangementMode.Descending).

See Also