PivotGridFieldCollectionBase.UseExtendedNameGeneration Property
Gets or sets whether or not the full name of a data source field is used to generate PivotGridFieldBase.Name.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.PivotGrid.v24.1.Core.dll
NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation
Declaration
Property Value
Type | Description |
---|---|
Boolean | true, to use the full name of a data source field to generate PivotGridFieldBase.Name. |
Remarks
For instance, the pivot grid is bound to an OLAP cube containing the [DeliveryDate].[Date] and [ShipDate].[Date] fields. The following names will be generated depending on the UseExtendedNameGeneration value:
- If UseExtendedNameGeneration is set to false, the fieldDate and fieldDate1 names will be generated.
- If UseExtendedNameGeneration is set to true, the fieldDeliveryDateDate and fieldShipDateDate names will be generated.
See Also