Class ChartZoomDeltaEventArgs
This class provides data for the ZoomDelta event.
Inherited Members
Namespace: Syncfusion.Maui.Toolkit.Charts
Assembly: Syncfusion.Maui.Toolkit.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
Gets or sets a value indicating whether to cancel the ongoing zooming action in the chart.
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 |