Skip to main content

ReportViewBase.ColumnArrangement Property

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

Namespace: DevExpress.XtraScheduler.Reporting

Assembly: DevExpress.XtraScheduler.v23.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