Class ChartZoomChangedEventArgs
Provides data for the ZoomChanged event.
Inheritance
System.Object
ChartZoomChangedEventArgs
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class ChartZoomChangedEventArgs : EventArgs
Constructors
ChartZoomChangedEventArgs(Size, Size)
Initializes a new instance of the ChartZoomChangedEventArgs class.
Declaration
public ChartZoomChangedEventArgs(Size previousZoom, Size newZoom)
Parameters
System.Windows.Size
previousZoom
The previous value of Zoom property. |
System.Windows.Size
newZoom
The new value of Zoom property. |
Properties
NewZoom
Gets the new zoom (scale) of the chart.
Declaration
public Size NewZoom { get; }
Property Value
System.Windows.Size
|
PreviousZoom
Gets the previous zoom (scale) of the chart.
Declaration
public Size PreviousZoom { get; }
Property Value
System.Windows.Size
|