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
Constructors
Initializes a new instance of the ChartPanOffsetUpdatedEventArgs class.
C#
public ChartPanOffsetUpdatedEventArgs(Point newOffset, Point oldOffset)
The new pan offset Point.
oldOffsetPointThe previous pan offset Point.
Properties
NewPanOffset
Point
Gets the new pan offset value.
C#
public Point NewPanOffset { get; }
A Point representing the new pan offset coordinates.
OldOffset
Point
Gets the previous pan offset value.
C#
public Point OldOffset { get; }
A Point representing the previous pan offset coordinates.