Class ChartZoomEventArgs
This class provides event data for the ZoomEnd Event.
Namespace: Syncfusion.Maui.Charts
Assembly: Syncfusion.Maui.Charts.dll
Syntax
public class ChartZoomEventArgs : EventArgs
Constructors
ChartZoomEventArgs(ChartAxis, Double, Double)
Initializes a new instance of the ChartZoomEventArgs class.
Declaration
public ChartZoomEventArgs(ChartAxis axis, double currentZoomFactor, double currentZoomPosition)
Parameters
Type | Name | Description |
---|---|---|
ChartAxis | axis | |
System.Double | currentZoomFactor | |
System.Double | currentZoomPosition |
Properties
Axis
Gets the values of the X and Y axes.
Declaration
public ChartAxis Axis { get; }
Property Value
Type |
---|
ChartAxis |
CurrentZoomFactor
Gets the current zoom factor value for the chart axis.
Declaration
public double CurrentZoomFactor { get; }
Property Value
Type |
---|
System.Double |
CurrentZoomPosition
Gets the current zoom position value for the chart axis.
Declaration
public double CurrentZoomPosition { get; }
Property Value
Type |
---|
System.Double |