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

IPivotCustomSummaryValue Interface

When implemented by a class, provides the capability to use custom objects as data field underlying values.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v18.2.Core.dll

Declaration

[CLSCompliant(false)]
public interface IPivotCustomSummaryValue :
    IConvertible,
    IComparable

Remarks

The pivot grid allows you to use custom objects as data field underlying values. The class describing these values should at least implement the IConvertible and IComparable interfaces. As an alternative, you can implement the IPivotCustomSummaryValue class members that is inherited from the IConvertible and IComparable interfaces and adds additional capabilities.

Note

For instance, to provide the capability to use summary filtering for custom objects, implement the IPivotCustomSummaryValue interface for custom summary values. Its IPivotCustomSummaryValue.FromDouble method specifies how to convert double values to custom objects and allows you to display filter values in a range selector in the required way.

See Also