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

PivotSummaryFilter.EndValue Property

Gets or sets the maximum summary value to be displayed.

Namespace: DevExpress.XtraPivotGrid

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

Declaration

[XtraSerializableProperty]
[DefaultValue(null)]
public object EndValue { get; set; }

Property Value

Type Default Description
Object *null*

The maximum summary value to be displayed.

Remarks

To specify the minimum summary value to be displayed, use the PivotSummaryFilter.StartValue property.

By default, summary filtering is applied to cells that belong to the last aggregation level (a level identified by the last column and row fields). You can use the PivotSummaryFilter.ColumnField and PivotSummaryFilter.RowField properties to specify other levels, except for the (Grand Total, Grand Total) level that consists of only one cell. To enable filtering at a specified level, you should also set the PivotSummaryFilter.Mode property to PivotSummaryFilterMode.SpecificLevel.

For more information about aggregation levels, see Aggregation Levels.

As an alternative to specifying summary filter settings using properties exposed by the PivotSummaryFilter object, you can call an appropriate overload of the PivotSummaryFilter.Apply method and pass these settings as parameters.

To learn more about summary filtering, see Filtering by Summaries Overview and Using Summary Filters.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the EndValue property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also