Class ChartAxisZoomingArgs
ChartAxisZoomingArgs is the base class for classes containing event data.
Inheritance
System.Object
System.EventArgs
ChartAxisZoomingArgs
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.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public sealed class ChartAxisZoomingArgs : EventArgs
Properties
Axis
Gets the axis of Chart.
Declaration
public ChartAxis Axis { get; }
Property Value
Type | Description |
---|---|
ChartAxis | The axis. |
Cancel
Gets or sets a value indicating whether the zooming should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
VisibleRange
Gets the new visible range.
Declaration
public MinMaxInfo VisibleRange { get; }
Property Value
Type | Description |
---|---|
MinMaxInfo | The range. |
ZoomFactor
Gets the zoom factor of current axis.
Declaration
public double ZoomFactor { get; }
Property Value
Type | Description |
---|---|
System.Double | The zoom factor. |
ZoomPosition
Gets the zoom position of current axis.
Declaration
public double ZoomPosition { get; }
Property Value
Type | Description |
---|---|
System.Double | The zoom position. |