Class ScrollEventArgs
Specifies the event arguments available for on scroll changed events in the chart component.
Inheritance
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ScrollEventArgs : BaseEventArgs
Properties
Axis
Defines the current scroll axis.
Declaration
public ChartAxis Axis { get; }
Property Value
Type | Description |
---|---|
ChartAxis | The ChartAxis object representing the current scroll axis. |
CurrentRange
Defines axis current range.
Declaration
public ChartAxisScrollbarSettingsRange CurrentRange { get; set; }
Property Value
Type | Description |
---|---|
ChartAxisScrollbarSettingsRange | An instance of the ChartAxisScrollbarSettingsRange class representing the current range. |
PreviousAxisRange
Defines axis previous range.
Declaration
public ChartAxisScrollbarSettingsRange PreviousAxisRange { get; set; }
Property Value
Type | Description |
---|---|
ChartAxisScrollbarSettingsRange | An instance of the ChartAxisScrollbarSettingsRange class representing the previous range. |
PreviousRange
Defines the previous range.
Declaration
public VisibleRangeModel PreviousRange { get; set; }
Property Value
Type | Description |
---|---|
VisibleRangeModel | An instance of the VisibleRangeModel class representing the previous range. |
PreviousZoomFactor
Defines the previous Zoom Factor.
Declaration
public double PreviousZoomFactor { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
PreviousZoomPosition
Defines the previous Zoom Position.
Declaration
public double PreviousZoomPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Range
Defines the current range.
Declaration
public VisibleRangeModel Range { get; set; }
Property Value
Type |
---|
VisibleRangeModel |
ZoomFactor
Defines the current Zoom Factor.
Declaration
public double ZoomFactor { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
ZoomPosition
Defines the current Zoom Position.
Declaration
public double ZoomPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |