Class ChartScrollEventArgs
This class provides event data for the Scroll Event.
Inheritance
System.Object
ChartScrollEventArgs
Namespace: Syncfusion.Maui.Charts
Assembly: Syncfusion.Maui.Charts.dll
Syntax
public class ChartScrollEventArgs : EventArgs
Constructors
ChartScrollEventArgs(ChartAxis, Double)
Initializes a new instance of the ChartScrollEventArgs class.
Declaration
public ChartScrollEventArgs(ChartAxis axis, double zoomPosition)
Parameters
Type | Name | Description |
---|---|---|
ChartAxis | axis | |
System.Double | zoomPosition |
Properties
Axis
Gets the values of the X and Y axes when panning the chart.
Declaration
public ChartAxis Axis { get; }
Property Value
Type |
---|
ChartAxis |
Cancel
Get or set indicates whether to continue the panning action.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
ZoomPosition
Gets the zoom position values when panning the chart.
Declaration
public double ZoomPosition { get; }
Property Value
Type |
---|
System.Double |