Class ChartDataSource
Handles data-layer associated operations for RadChartView.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
[TelerikToolboxCategory("Data Visualization")]
public class ChartDataSource : FrameworkElement, IEnumerable<DataPoint>, IEnumerable
Constructors
ChartDataSource()
Fields
ItemsSourceProperty
Identifies the Items
Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
System.
|
SamplingThresholdProperty
Identifies the Sampling
Declaration
public static readonly DependencyProperty SamplingThresholdProperty
Field Value
System.
|
SamplingUnitIntervalProperty
Identifies the Sampling
Declaration
public static readonly DependencyProperty SamplingUnitIntervalProperty
Field Value
System.
|
SamplingUnitProperty
Identifies the Sampling
Declaration
public static readonly DependencyProperty SamplingUnitProperty
Field Value
System.
|
Properties
ItemsSource
Gets or sets the ItemsSource.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.
|
SamplingThreshold
Gets or sets the SamplingThreshold. This property defines the minimum number of items in the source, required to apply sampling.
Declaration
public int SamplingThreshold { get; set; }
Property Value
System.
|
SamplingUnit
Gets or sets the SamplingUnit. This property defines how the data is combined into groups.
Declaration
public SamplingTimeUnit SamplingUnit { get; set; }
Property Value
See Also
SamplingUnitInterval
Gets or sets the SamplingUnitInterval. Works together with Sampling
Declaration
public int SamplingUnitInterval { get; set; }
Property Value
System.
|
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<DataPoint> GetEnumerator()
Returns
System. A System.Collections.Generic.IEnumerator<> that can be used to iterate through the collection. |