Class DataAxisChangedEventArgs
This class supports the RadChart infrastructure and is not intended to be used directly from your code.
Inheritance
System.Object
System.EventArgs
DataAxisChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class DataAxisChangedEventArgs : EventArgs
Constructors
DataAxisChangedEventArgs(IDataAxis, IDataAxis)
Initializes a new instance of the DataAxisChangedEventArgs class.
Declaration
public DataAxisChangedEventArgs(IDataAxis oldAxis, IDataAxis newAxis)
Parameters
IDataAxis
oldAxis
The old axis. |
IDataAxis
newAxis
The new axis. |
Properties
NewDataAxis
Gets or sets the new DataAxis.
Declaration
public IDataAxis NewDataAxis { get; set; }
Property Value
IDataAxis
The new data axis. |
OldDataAxis
Gets or sets the old DataAxis.
Declaration
public IDataAxis OldDataAxis { get; set; }
Property Value
IDataAxis
The old data axis. |