New to Telerik UI for WPFStart a free 30-day trial

Provides data for the ZoomChanged event.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class ChartZoomChangedEventArgs : EventArgs

Inheritance: objectEventArgsChartZoomChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ChartZoomChangedEventArgs class.

C#
public ChartZoomChangedEventArgs(Size previousZoom, Size newZoom)
Parameters:previousZoomSize

The previous value of Zoom property.

newZoomSize

The new value of Zoom property.

Properties

Gets the new zoom (scale) of the chart.

C#
public Size NewZoom { get; }

Gets the previous zoom (scale) of the chart.

C#
public Size PreviousZoom { get; }