Class ZoomEventArgs
Class implementation for zooming event arguments.
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public class ZoomEventArgs : EventArgs
Constructors
ZoomEventArgs()
Declaration
public ZoomEventArgs()
Properties
Axis
Gets or sets the the axis whose range is changed because of zooming.
Declaration
public ChartAxisBase2D Axis { get; set; }
Property Value
Type |
---|
ChartAxisBase2D |
CurrentFactor
Gets the current zoom factor of the axis.
Declaration
public double CurrentFactor { get; }
Property Value
Type |
---|
System.Double |
CurrentPosition
Gets or sets the current zoom position of the axis.
Declaration
public double CurrentPosition { get; set; }
Property Value
Type |
---|
System.Double |
OldRange
Gets or sets the old visible range.
Declaration
public object OldRange { get; set; }
Property Value
Type |
---|
System.Object |
PreviousFactor
Gets the previous zoom factor of the axis.
Declaration
public double PreviousFactor { get; }
Property Value
Type |
---|
System.Double |
PreviousPosition
Gets or sets the previous zoom position of the axis.
Declaration
public double PreviousPosition { get; set; }
Property Value
Type |
---|
System.Double |