Skip to main content

PivotSummaryFilter.EndValue Property

SECURITY NOTE

Deserializing layout settings from untrusted resources may create security issues. Serializable System.Object properties that contain custom type values are not (de)serialized automatically. Review the following help topic for information on how to (de)serialize custom type values: Safe Deserialization.

Gets or sets the maximum summary value to be displayed.

Namespace: DevExpress.XtraPivotGrid

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

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

[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 detail 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 detail levels, see detail 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.

See Filtering by Summaries for more information.

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