ClassChartDataContext
Class
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.UI.Xaml.Controls.Chart
Assembly:Telerik.WinUI.Controls.dll
Syntax:
cs-api-definition
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
cs-api-definition
public DataPointInfo ClosestDataPoint { get; }
Property Value
DataPoints
Gets a list of DataPointInfo objects each of which contains the closest data point to the tap location and the point's corresponding series.
Declaration
cs-api-definition
public List<DataPointInfo> DataPoints { get; }
Property Value
TouchLocation
Gets the physical point (in coordinates, relative to the chart surface) this context is associated with.
Declaration
cs-api-definition
public Point TouchLocation { get; }
Property Value
Point