officefileapi-devexpress-dot-spreadsheet-dot-pivottable-0949a79f.md
Gets or sets a value indicating whether to apply the style formatting to row headers.
Namespace : DevExpress.Spreadsheet
Assembly : DevExpress.Spreadsheet.v25.2.Core.dll
NuGet Package : DevExpress.Spreadsheet.Core
bool ShowRowHeaders { get; set; }
Property ShowRowHeaders As Boolean
| Type | Description |
|---|---|
| Boolean |
true , to format row headers; otherwise, false.
|
Set the ShowRowHeaders property to true to apply formatting to the rows containing item labels for the outer row fields. These rows are highlighted in the following image.
The appearance of row headers is specified by the TableStyleElementType.FirstRowSubheading, TableStyleElementType.SecondRowSubheading and TableStyleElementType.ThirdRowSubheading elements of the table style applied to the pivot table.
Worksheet worksheet = workbook.Worksheets["Report1"];
workbook.Worksheets.ActiveWorksheet = worksheet;
// Access the pivot table by its name in the collection.
PivotTable pivotTable = worksheet.PivotTables["PivotTable1"];
// Add the "Region" field to the column axis area.
pivotTable.ColumnFields.Add(pivotTable.Fields["Region"]);
// Remove formatting from row headers.
pivotTable.ShowRowHeaders = false;
Dim worksheet As Worksheet = workbook.Worksheets("Report1")
workbook.Worksheets.ActiveWorksheet = worksheet
' Access the pivot table by its name in the collection.
Dim pivotTable As PivotTable = worksheet.PivotTables("PivotTable1")
' Add the "Region" field to the column axis area.
pivotTable.ColumnFields.Add(pivotTable.Fields("Region"))
' Remove formatting from row headers.
pivotTable.ShowRowHeaders = False
The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowRowHeaders property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
// Remove formatting from row headers.
pivotTable.ShowRowHeaders = false;
#endregion #RowHeaders
// Remove formatting from row headers.
pivotTable.ShowRowHeaders = false;
#endregion #RowHeaders
// Remove formatting from row headers.
pivotTable.ShowRowHeaders = false;
#endregion #RowHeaders
' Remove formatting from row headers.
pivotTable.ShowRowHeaders = False
' #End Region ' #RowHeaders
' Remove formatting from row headers.
pivotTable.ShowRowHeaders = False
' #End Region ' #RowHeaders
' Remove formatting from row headers.
pivotTable.ShowRowHeaders = False
#End Region ' #RowHeaders
See Also