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

Pair of values.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class DataTuple

Inheritance: objectDataTuple

Constructors

Initializes a new instance of the DataTuple class.

C#
public DataTuple(object firstValue, object secondValue)
Parameters:firstValueobject

Value drawn by the horizontal axis in a cartesian chart or by the polar axis in a polar chart.

secondValueobject

Value drawn by the vertical axis in a cartesian chart or by the radial axis in a polar chart.

Properties

Gets the value drawn by the horizontal axis in a cartesian chart or by the polar axis in a polar chart.

C#
public object FirstValue { get; }

Gets the value drawn by the vertical axis in a cartesian chart or by the radial axis in a polar chart.

C#
public object SecondValue { get; }

Methods

Returns a string that represents the current object.

C#
public override string ToString()
Returns:

string

A string that represents the current object.

Overrides: object.ToString()