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

XRChart.UnregisterSummaryFunction(String) Method

OBSOLETE

This method is obsolete now. Use the static UnregisterGlobalSummaryFunction method instead.

Unregisters the summary function with the specified name.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

[Obsolete("This method is obsolete now. Use the static UnregisterGlobalSummaryFunction method instead.", false)]
public void UnregisterSummaryFunction(
    string name
)

Parameters

Name Type Description
name String

A String value representing the name of the summary function to be unregistered.

Remarks

Use the UnregisterSummaryFunction method to unregister a summary function by its name. Note that this method allows you to unregister both custom summary functions, which were previously registered via the XRChart.RegisterSummaryFunction method, as well as to unregister any of the predefined summary functions.

To restore the initial state of the summary functions within a XRChart, call the XRChart.ResetSummaryFunctions method.

See Also