Class ChartPanOffsetChangedEventArgs
Provides data for the PanOffsetChanged event.
Inheritance
System.Object
ChartPanOffsetChangedEventArgs
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class ChartPanOffsetChangedEventArgs : EventArgs
Constructors
ChartPanOffsetChangedEventArgs(Point, Point)
Initializes a new instance of the ChartPanOffsetChangedEventArgs class.
Declaration
public ChartPanOffsetChangedEventArgs(Point previousPanOffset, Point newPanOffset)
Parameters
System.Windows.Point
previousPanOffset
The previous value of PanOffset property. |
System.Windows.Point
newPanOffset
The new value of PanOffset property. |
Properties
NewPanOffset
Gets the new pan offset of the chart.
Declaration
public Point NewPanOffset { get; }
Property Value
System.Windows.Point
|
PreviousPanOffset
Gets the previous pan offset of the chart.
Declaration
public Point PreviousPanOffset { get; }
Property Value
System.Windows.Point
|