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

PivotFieldImageIndexEventArgs.IsOthersValue Property

Gets whether the current header corresponds to the “Others” row/column.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v19.1.dll

Declaration

public bool IsOthersValue { get; }

Property Value

Type Description
Boolean

true if the current header corresponds to the “Others” row/column.

Remarks

The “Others” row/column is displayed when the PivotGridFieldBase.TopValueCount property is set to a positive value and the PivotGridFieldBase.TopValueShowOthers property is set to true. In this case, the PivotGrid displays a fixed number of values for the specified column or row field (this number is determined by the TopValueCount property), the remaining field values are combined and displayed under the “Others” header.

Note

If you try to access the IsOthersValue property while an asynchronous operation is being performed, an exception will be thrown. To determine whether the operation is in progress, use the pivot grid’s IThreadSafeAccessible.IsAsyncInProgress property. For more information, see Asynchronous Mode.

See Also