Skip to main content

XRChart.UnregisterGlobalSummaryFunction(String) Method

Unregisters the summary function with the specified name.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public static void UnregisterGlobalSummaryFunction(
    string name
)

Parameters

Name Type Description
name String

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

Remarks

The functions unregistered using this method are not available for any XRChart control in the application any more.

This method allows you to unregister custom summary functions that were previously registered via the RegisterGlobalSummaryFunction(String, String, Nullable<ScaleType>, Int32, SummaryFunctionArgumentDescription[], SummaryFunction) method, as well as the predefined summary functions.

See Also