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

MVCxPivotGridWebOptionsDataField.Caption Property

Gets or sets the text displayed within the data header.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public string Caption { get; set; }

Property Value

Type Description
String

A string which specifies the text displayed within the data header.

Property Paths

You can access this nested property as listed below:

Object Type Path to Caption
PivotGridSettings
.OptionsDataField.Caption

Remarks

The data header is a header displayed within the column header area or row header area which represents data fields. The data header is displayed if there are two or more visible data fields and the MVCxPivotGridWebOptionsDataField.Area property is set to PivotDataArea.ColumnArea or PivotDataArea.RowArea. The default text displayed within the data header is ‘Data’. Use the Caption property to modify this text. The following image illustrates the data header displayed within the row header area:

PivotGrid_DataField_DataFieldHeaders_Caption

An end-user can drag the data header between the column header area and row header area and within these areas. This automatically modifies the presentation of data by moving the data field headers among the field values.

To change the position of the data header via code use the MVCxPivotGridWebOptionsDataField.Area and MVCxPivotGridWebOptionsDataField.AreaIndex properties.

See Also