Class ItemToolTipEventArgs
Event arguments for tooltip events.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ItemToolTipEventArgs : EventArgs
Constructors
ItemToolTipEventArgs(DataPoint, DataSeries)
Initializes a new instance of the ItemToolTipEventArgs class.
Declaration
public ItemToolTipEventArgs(DataPoint dataPoint, DataSeries dataSeries)
Parameters
DataPoint
dataPoint
The data point. |
DataSeries
dataSeries
The data series. |
ItemToolTipEventArgs(DataPoint, DataSeries, MouseEventArgs)
Initializes a new instance of the ItemToolTipEventArgs class.
Declaration
public ItemToolTipEventArgs(DataPoint dataPoint, DataSeries dataSeries, MouseEventArgs mouseData)
Parameters
DataPoint
dataPoint
The data point. |
DataSeries
dataSeries
The data series. |
System.Windows.Input.MouseEventArgs
mouseData
The System.Windows.Input.MouseEventArgs instance containing the event data. |
Properties
DataPoint
Gets or sets the data point.
Declaration
public DataPoint DataPoint { get; }
Property Value
DataPoint
The data point. |
DataSeries
Gets or sets the data series.
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. |