New to Telerik UI for .NET MAUIStart a free 30-day trial

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:

C#
public class ChartPanOffsetUpdatedEventArgs : EventArgs

Inheritance: objectEventArgsChartPanOffsetUpdatedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ChartPanOffsetUpdatedEventArgs class.

C#
public ChartPanOffsetUpdatedEventArgs(Point newOffset, Point oldOffset)
Parameters:newOffsetPoint

The new pan offset Point.

oldOffsetPoint

The previous pan offset Point.

Properties

Gets the new pan offset value.

C#
public Point NewPanOffset { get; }
Property Value:

A Point representing the new pan offset coordinates.

Gets the previous pan offset value.

C#
public Point OldOffset { get; }
Property Value:

A Point representing the previous pan offset coordinates.