Class ChartItemClickEventArgs
This class holds the event arguments collected when the ItemClick RoutedEvent is raised.
Inherited Members
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ChartItemClickEventArgs : RadRoutedEventArgs
Constructors
ChartItemClickEventArgs(RoutedEvent)
Initializes a new instance of the ChartItemClickEventArgs class.
Declaration
public ChartItemClickEventArgs(RoutedEvent routedEvent)
Parameters
RoutedEvent
routedEvent
The routed event. |
ChartItemClickEventArgs(RoutedEvent, IChartItem)
Initializes a new instance of the ChartItemClickEventArgs class.
Declaration
public ChartItemClickEventArgs(RoutedEvent routedEvent, IChartItem source)
Parameters
RoutedEvent
routedEvent
The routed event identifier for this instance of the System.Windows.RoutedEventArgs class. |
IChartItem
source
An alternate source that will be reported when the event is handled. This pre-populates the System.Windows.RoutedEventArgs.Source property. |
ChartItemClickEventArgs(RoutedEvent, IChartItem, MouseEventArgs)
Initializes a new instance of the ChartItemClickEventArgs class.
Declaration
public ChartItemClickEventArgs(RoutedEvent routedEvent, IChartItem source, MouseEventArgs mouseData)
Parameters
RoutedEvent
routedEvent
The routed event. |
IChartItem
source
The source. |
System.Windows.Input.MouseEventArgs
mouseData
The System.Windows.Input.MouseEventArgs instance containing the event data. |
ChartItemClickEventArgs(RoutedEvent, IChartItem, DataPoint, MouseEventArgs)
Initializes a new instance of the ChartItemClickEventArgs class.
Declaration
public ChartItemClickEventArgs(RoutedEvent routedEvent, IChartItem source, DataPoint dataPoint, MouseEventArgs mouseData)
Parameters
RoutedEvent
routedEvent
The routed event. |
IChartItem
source
The source. |
DataPoint
dataPoint
The data point. |
System.Windows.Input.MouseEventArgs
mouseData
The System.Windows.Input.MouseEventArgs instance containing the event data. |
Properties
DataPoint
Gets or sets the data point associated with the series item.
Declaration
public DataPoint DataPoint { get; }
Property Value
DataPoint
The data point. |
DataSeries
Gets or sets the data series associated with the series item.
Declaration
public DataSeries DataSeries { get; }
Property Value
DataSeries
The data series. |
ItemIndex
Gets or sets the index of the associated series item.
Declaration
public int ItemIndex { get; }
Property Value
System.Int32
|
MouseData
Gets or sets the mouse data.
Declaration
public MouseEventArgs MouseData { get; }
Property Value
System.Windows.Input.MouseEventArgs
The mouse data. |