ClassChartDataContext
An object of this type is used as a data context for chart's behaviors. For example the tool tip behavior can use a chart data context to populate its tool tip template with data.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public class ChartDataContext
Inheritance: objectChartDataContext
Properties
ClosestDataPoint
Gets an object that contains the closest data point to the tap location and the series object to which the data point belongs.
Declaration
public DataPointInfo ClosestDataPoint { get; }
Property Value
DataPointInfos
Gets a list of data point info objects each of which contains the closest data point to the tap location and the point's corresponding series.
Declaration
public List<DataPointInfo> DataPointInfos { get; }
Property Value
TouchLocation
Gets the physical point (in coordinates, relative to the chart surface) this context is associated with.
Declaration
public Point TouchLocation { get; }
Property Value
Point