Class
DataTuple

Pair of values.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

cs-api-definition
public class DataTuple

Inheritance: objectDataTuple

Constructors

DataTuple(object, object)

Initializes a new instance of the DataTuple class.

Declaration

cs-api-definition
public DataTuple(object firstValue, object secondValue)

Parameters

firstValue

object

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

secondValue

object

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

Properties

FirstValue

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

Declaration

cs-api-definition
public object FirstValue { get; }

Property Value

object

SecondValue

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

Declaration

cs-api-definition
public object SecondValue { get; }

Property Value

object

Methods

ToString()

Returns a string that represents the current object.

Declaration

cs-api-definition
public override string ToString()

Returns

string

A string that represents the current object.

Overrides object.ToString()