Class DataTuple
Pair of values.
Inheritance
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class DataTuple : Object
Constructors
DataTuple(Object, Object)
Initializes a new instance of the DataTuple class.
Declaration
public DataTuple(object firstValue, object secondValue)
Parameters
System.Object
firstValue
Value drawn by the horizontal axis in a cartesian chart or by the polar axis in a polar chart. |
System.Object
secondValue
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
public object FirstValue { get; }
Property Value
System.Object
|
SecondValue
Gets the value drawn by the vertical axis in a cartesian chart or by the radial axis in a polar chart.
Declaration
public object SecondValue { get; }
Property Value
System.Object
|
Methods
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
System.String
A string that represents the current object. |