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

TcxPivotGridTotalsLocation Enum

Enumerates available locations of subtotal and grand total columns and rows within the data area.

#Declaration

Delphi
TcxPivotGridTotalsLocation = (
    tlFar,
    tlNear,
    tlCustom
);

#Members

Name
tlFar
tlNear
tlCustom

#Remarks

To specify locations of subtotal and grand total columns and rows, use the pivot grid’s OptionsView.TotalsLocation property. This property accepts TcxPivotGridTotalsLocation enumeration values.

The following table contains descriptions of the enumeration values:

Value

Meaning

tlFar

For subtotal and grand total columns, indicates that the columns are shown on the right side of the data area.

For subtotal and grand total rows, indicates that the rows are shown on the bottom side of the data area.

tlNear

For subtotal and grand total columns, indicates that the columns are shown on the left side of the data area.

For subtotal and grand total rows, indicates that the rows are shown on the top side of the data area.

tlCustom

You cannot assign this value to the pivot grid’s OptionsView.TotalsLocation property. tvCustom is automatically assigned to the OptionsView.TotalsLocation property if OptionsView.ColumnTotalsLocation and OptionsView.RowTotalsLocation property values are mixed.

See Also