Class ChartHoverChangedEventArgs
Provides data for the HoverChanged event.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ChartHoverChangedEventArgs : EventArgs
Constructors
ChartHoverChangedEventArgs(IList<DataPoint>, IList<DataPoint>, IList<DataSeries>, IList<DataSeries>)
Initializes a new instance of the ChartHoverChangedEventArgs class.
Declaration
public ChartHoverChangedEventArgs(IList<DataPoint> hoveredItems, IList<DataPoint> unhoveredItems, IList<DataSeries> hoveredSeries, IList<DataSeries> unhoveredSeries)
Parameters
System.Collections.Generic.IList<DataPoint>
hoveredItems
The hovered items. |
System.Collections.Generic.IList<DataPoint>
unhoveredItems
The unhovered items. |
System.Collections.Generic.IList<DataSeries>
hoveredSeries
The hovered series. |
System.Collections.Generic.IList<DataSeries>
unhoveredSeries
The unhovered series. |
Properties
HoveredItems
Gets a list that contains the newly hovered items.
Declaration
public IList<DataPoint> HoveredItems { get; }
Property Value
System.Collections.Generic.IList<DataPoint>
The hovered items. |
HoveredSeries
Gets a list that contains the newly hovered series.
Declaration
public IList<DataSeries> HoveredSeries { get; }
Property Value
System.Collections.Generic.IList<DataSeries>
The hovered series. |
UnhoveredItems
Gets a list that contains the newly unhovered items.
Declaration
public IList<DataPoint> UnhoveredItems { get; }
Property Value
System.Collections.Generic.IList<DataPoint>
The unhovered items. |
UnhoveredSeries
Gets a list that contains the newly unhovered series.
Declaration
public IList<DataSeries> UnhoveredSeries { get; }
Property Value
System.Collections.Generic.IList<DataSeries>
The unhovered series. |