Class
ChartPanOffsetUpdatedEventArgs

Provides data for the pan offset updated event in chart controls. This class extends EventArgs to include information about the old and new pan offset values.

Definition

Namespace:Telerik.Maui.Controls.Compatibility.Chart

Assembly:Telerik.Maui.Controls.Compatibility.dll

Syntax:

cs-api-definition
public class ChartPanOffsetUpdatedEventArgs : EventArgs

Inheritance: objectEventArgsChartPanOffsetUpdatedEventArgs

Inherited Members EventArgs.Empty

Constructors

ChartPanOffsetUpdatedEventArgs(Point, Point)

Initializes a new instance of the ChartPanOffsetUpdatedEventArgs class.

Declaration

cs-api-definition
public ChartPanOffsetUpdatedEventArgs(Point newOffset, Point oldOffset)

Parameters

newOffset

Point

The new pan offset Point.

oldOffset

Point

The previous pan offset Point.

Properties

NewPanOffset

Gets the new pan offset value.

Declaration

cs-api-definition
public Point NewPanOffset { get; }

Property Value

Point

A Point representing the new pan offset coordinates.

OldOffset

Gets the previous pan offset value.

Declaration

cs-api-definition
public Point OldOffset { get; }

Property Value

Point

A Point representing the previous pan offset coordinates.