Skip to main content
A newer version of this page is available. .

PivotGridControl.MergeRowFieldValues Property

Gets or sets whether to merge the neighboring row headers if they contain the same field value. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v19.1.dll

Declaration

public bool MergeRowFieldValues { get; set; }

Property Value

Type Description
Boolean

true to merge the neighboring row headers if they contain the same field value; otherwise, false.

Remarks

If this property is set to true, the field values of outer row fields are merged when a pivot grid is printed (in the same way as the outer field values are displayed in the control on a form). Otherwise, merged cells are split into small cells, so each duplicates a value of the original cell.

To specify whether to merge the neighboring column headers, use the PivotGridControl.MergeColumnFieldValues property.

To learn more, see Printing and Exporting.

See Also