Class DataAxisChangedEventArgs
This class supports the RadChart infrastructure and is not intended to be used directly from your code.
Inheritance
System.Object
DataAxisChangedEventArgs
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. |