Class DataPointInfo
This class contains the closest data point to a tap location as well as the point's corresponding series object.
Inheritance
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class DataPointInfo : Object
Properties
ContainsTouchLocation
Gets a value indicating whether the layout slot of the data point contains the touch location.
Declaration
public bool ContainsTouchLocation { get; }
Property Value
System.Boolean
|
DataPoint
Gets the data point in the series object that is closest to the tap location.
Declaration
public DataPoint DataPoint { get; }
Property Value
DataPoint
|
DisplayContent
Gets or sets the object that visually represents the value of the associated point.
Declaration
public object DisplayContent { get; set; }
Property Value
System.Object
|
DisplayHeader
Gets or sets the name of the series which host the associated data point.
Declaration
public object DisplayHeader { get; set; }
Property Value
System.Object
|
Series
Gets the series object that contains the data point.
Declaration
public ChartSeries Series { get; }
Property Value
ChartSeries
|