Class ChartResetZoomEventArgs
This class provides event data for the ResetZoom Event.
Inheritance
System.Object
ChartResetZoomEventArgs
Namespace: Syncfusion.Maui.Charts
Assembly: Syncfusion.Maui.Charts.dll
Syntax
public class ChartResetZoomEventArgs : EventArgs
Constructors
ChartResetZoomEventArgs(ChartAxis, Double, Double)
Initializes a new instance of the ChartResetZoomEventArgs class.
Declaration
public ChartResetZoomEventArgs(ChartAxis axis, double previousZoomFactor, double previousZoomPosition)
Parameters
Type | Name | Description |
---|---|---|
ChartAxis | axis | |
System.Double | previousZoomFactor | |
System.Double | previousZoomPosition |
Properties
Axis
Gets the values of the X and Y axes when reset the chart.
Declaration
public ChartAxis Axis { get; }
Property Value
Type |
---|
ChartAxis |
PreviousZoomFactor
Gets the previous zoom factor values when reset the chart.
Declaration
public double PreviousZoomFactor { get; }
Property Value
Type |
---|
System.Double |
PreviousZoomPosition
Gets the previous zoom position values when reset the chart.
Declaration
public double PreviousZoomPosition { get; }
Property Value
Type |
---|
System.Double |