Class ActualRangeChangedEventArgs
Represents chart axis actual range changed event arguments.
Inheritance
System.Object
ActualRangeChangedEventArgs
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public class ActualRangeChangedEventArgs : EventArgs
Constructors
ActualRangeChangedEventArgs(ChartAxis)
Initializes a new instance of the ActualRangeChangedEventArgs class.
Declaration
public ActualRangeChangedEventArgs(ChartAxis axis)
Parameters
Type | Name | Description |
---|---|---|
ChartAxis | axis | The axis. |
Properties
ActualInterval
Gets or sets object that represents definite interval value of axis range.
Declaration
public double ActualInterval { get; }
Property Value
Type |
---|
System.Double |
ActualMaximum
Gets or sets object that represents definite maximum value of axis range.
Declaration
public object ActualMaximum { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The maximum. |
ActualMinimum
Gets or sets object that represents definite minimum value of axis range.
Declaration
public object ActualMinimum { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The actual minimum. |
IsScrolling
Gets or sets a value indicating whether to enable scrolling.
Declaration
public bool IsScrolling { get; set; }
Property Value
Type |
---|
System.Boolean |
VisibleMaximum
Gets or sets object that represents observable maximum value of axis range.
Declaration
public object VisibleMaximum { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The maximum. |
VisibleMinimum
Gets or sets object that represents observable minimum value of axis range.
Declaration
public object VisibleMinimum { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The minimum. |