Class DataPointSamplingInfo
Represents an info class that is used to store the data needed to generate a DataPoint in sampling scenario.
Inheritance
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class DataPointSamplingInfo : Object, IEnumerable<object>, IEnumerable
Constructors
DataPointSamplingInfo(AggregateResultCollection, AggregateFunctionsGroup)
Initializes a new instance of the DataPointSamplingInfo class.
Declaration
public DataPointSamplingInfo(AggregateResultCollection resultCollection, AggregateFunctionsGroup group)
Parameters
AggregateResultCollection
resultCollection
The resultCollection. |
AggregateFunctionsGroup
group
The group. |
Properties
AggregateResultCollection
Gets or sets the AggregateResultCollection used to create the DataPoint.
Declaration
public AggregateResultCollection AggregateResultCollection { get; set; }
Property Value
AggregateResultCollection
|
Count
Gets the number of elements contained in the DataPointSamplingInfo.
Declaration
public int Count { get; }
Property Value
System.Int32
|
Item[Int32]
Gets the element at the desired index from the DataPointSamplingInfo.
Declaration
public object this[int index] { get; }
Parameters
System.Int32
index
|
Property Value
System.Object
|
Methods
GetEnumerator()
Returns an enumerator that iterates through the DataPointSamplingInfo.
Declaration
public IEnumerator<object> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<System.Object>
|