Skip to main content
Row

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

PivotTable.View Property

Provides access to the display settings of a PivotTable report.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

PivotViewOptions View { get; }

#Property Value

Type Description
PivotViewOptions

A PivotViewOptions object containing the PivotTable’s display settings.

#Remarks

Use the View property to access an object exposing the PivotViewOptions interface. Utilize properties of the returned object to set the text to displayed in the row and column headers of a pivot table shown in compact form (PivotViewOptions.RowHeaderCaption and PivotViewOptions.ColumnHeaderCaption); specify the grand total caption (PivotViewOptions.GrandTotalCaption); show or hide the expand/collapse buttons (PivotViewOptions.ShowDrillIndicators), field headers and filter drop-down arrows (PivotViewOptions.ShowFieldHeaders); display a custom message in empty cells (PivotViewOptions.ShowMissing and PivotViewOptions.MissingCaption) and cells containing errors (PivotViewOptions.ShowError and PivotViewOptions.ErrorCaption), and define the alternative text for your PivotTable report (PivotViewOptions.AltTextTitle and PivotViewOptions.AltTextDescription).

See Also