New to Telerik UI for WPFStart a free 30-day trial

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:

C#
public class ChartDataContext

Inheritance: objectChartDataContext

Properties

Gets an object that contains the closest data point to the tap location and the series object to which the data point belongs.

C#
public DataPointInfo ClosestDataPoint { get; }

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.

C#
public List<DataPointInfo> DataPointInfos { get; }

Gets the physical point (in coordinates, relative to the chart surface) this context is associated with.

C#
public Point TouchLocation { get; }