Skip to main content

ChartElementSelectionChangedEventHandler Delegate

Defines a signature (parameter list types) for the method that handles the ChartBase.SelectionChanged event.

Namespace: DevExpress.WinUI.Charts

Assembly: DevExpress.WinUI.Charts.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public delegate void ChartElementSelectionChangedEventHandler(
    object sender,
    ChartElementSelectionChangedEventArgs e
);

Parameters

Name Type Description
sender Object

Identifies the chart object that raises the event.

e ChartElementSelectionChangedEventArgs

Contains event data.

Remarks

See the following Microsoft topic for more information: EventHandler Delegate.

See Also