Skip to main content

CustomCallbackEventHandler Delegate

In This Article

Represents a method that will handle the WebChartControl.CustomCallback event.

Namespace: DevExpress.XtraCharts.Web

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

NuGet Package: DevExpress.Web.Visualization

#Declaration

public delegate void CustomCallbackEventHandler(
    object sender,
    CustomCallbackEventArgs e
);

#Parameters

Name Type Description
sender Object

The event source. This parameter identifies the WebChartControl which raised the event.

e CustomCallbackEventArgs

A CustomCallbackEventArgs object which contains event data.

See Also