Class DrillEventArgs
Inheritance
System.Object
DrillEventArgs
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class DrillEventArgs : CancelEventArgs
Constructors
DrillEventArgs(DrillDirection, Int32, ChartView, DataPoint)
Initializes a new instance of the DrillEventArgs class.
Declaration
public DrillEventArgs(DrillDirection direction, int level, ChartView view, DataPoint selectedPoint)
Parameters
DrillDirection
direction
The direction. |
System.Int32
level
The level. |
ChartView
view
The view. |
DataPoint
selectedPoint
The selected point. |
Properties
Direction
Gets or sets the direction.
Declaration
public DrillDirection Direction { get; set; }
Property Value
DrillDirection
The direction. |
Level
Gets or sets the level.
Declaration
public int Level { get; set; }
Property Value
System.Int32
The level. |
SelectedPoint
Gets or sets the selected point.
Declaration
public DataPoint SelectedPoint { get; set; }
Property Value
DataPoint
The selected point. |
Series
Gets the series.
Declaration
public ChartSeries Series { get; }
Property Value
ChartSeries
The series. |
View
Gets or sets the view.
Declaration
public ChartView View { get; set; }
Property Value
ChartView
The view. |