xtrareports-devexpress-dot-xtrareports-dot-ui-dot-crosstab-dot-crosstablayoutoptions-c7b5010d.md
Specifies the position of the column totals.
Namespace : DevExpress.XtraReports.UI.CrossTab
Assembly : DevExpress.XtraReports.v25.2.dll
NuGet Package : DevExpress.Reporting.Core
[DefaultValue(TotalsPosition.AfterData)]
public virtual TotalsPosition ColumnTotalsPosition { get; set; }
<DefaultValue(TotalsPosition.AfterData)>
Public Overridable Property ColumnTotalsPosition As TotalsPosition
| Type | Default | Description |
|---|---|---|
| TotalsPosition | AfterData |
The column totals position.
|
Available values:
| Name | Description |
|---|---|
| AfterData |
Row/column totals are displayed after the row/column field values. Row/column grand totals are displayed in the last row/column.
| | BeforeData |
Row/column totals are displayed before the row/column field values. Row/column grand totals are displayed before data and row/column totals.
|
You can access this nested property as listed below:
| Object Type | Path to ColumnTotalsPosition |
|---|---|
| XRCrossTab |
.LayoutOptions .ColumnTotalsPosition
|
The XRCrossTab control calculates the following automatic totals:
Use the ColumnTotalsPosition property to move column totals and column grand totals. Use the RowTotalsPosition property to move row totals and row grand totals.
At design time, you can set the ColumnTotalsPosition property in the Cross Tab’s smart tag or in the Properties window’s LayoutOptions group.
This property provides the following values:
AfterData (Default)
BeforeData
If you want to hide column totals or column grand totals, select any cell in the column and disable the XRCrossTabCell.ColumnVisible property.
See Also