Skip to main content

WebChartControl.UnregisterSummaryFunction(String) Method

Unregisters the summary function with the specified name.

Namespace: DevExpress.XtraCharts.Web

Assembly: DevExpress.XtraCharts.v23.2.Web.dll

NuGet Package: DevExpress.Web.Visualization

Declaration

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 WebChartControl.RegisterSummaryFunction method, as well as to unregister any of the predefined summary functions.

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

See Also