Class ChartZoomDeltaEventArgs
This class provides event data for the ZoomDelta Event.
Inherited Members
Namespace: Syncfusion.Maui.Charts
Assembly: Syncfusion.Maui.Charts.dll
Syntax
public class ChartZoomDeltaEventArgs : ChartZoomEventArgs
Constructors
ChartZoomDeltaEventArgs(ChartAxis, Double, Double, Double, Double)
Initializes a new instance of the ChartZoomDeltaEventArgs class.
Declaration
public ChartZoomDeltaEventArgs(ChartAxis axis, double currentZoomFactor, double currentZoomPosition, double previousZoomFactor, double previousZoomPosition)
Parameters
Type | Name | Description |
---|---|---|
ChartAxis | axis | |
System.Double | currentZoomFactor | |
System.Double | currentZoomPosition | |
System.Double | previousZoomFactor | |
System.Double | previousZoomPosition |
Properties
Cancel
Get or set indicates whether to continue the zooming action.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
PreviousZoomFactor
Gets the previous zoom factor values when zooming the chart.
Declaration
public double PreviousZoomFactor { get; }
Property Value
Type |
---|
System.Double |
PreviousZoomPosition
Gets the previous zoom position values when zooming the chart.
Declaration
public double PreviousZoomPosition { get; }
Property Value
Type |
---|
System.Double |