ClassChartDataSource
Handles data-layer associated operations for RadChartView.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
[TelerikToolboxCategory("Data Visualization")]
public class ChartDataSource : FrameworkElement, IEnumerable<DataPoint>, IEnumerable
Inheritance: objectChartDataSource
Implements:
Constructors
ChartDataSource()
Initializes a new instance of the ChartDataSource class.
Declaration
public ChartDataSource()
Fields
ItemsSourceProperty
Identifies the ItemsSource dependency property.
Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
DependencyProperty
SamplingThresholdProperty
Identifies the SamplingThreshold dependency property.
Declaration
public static readonly DependencyProperty SamplingThresholdProperty
Field Value
DependencyProperty
SamplingUnitIntervalProperty
Identifies the SamplingUnitInterval dependency property.
Declaration
public static readonly DependencyProperty SamplingUnitIntervalProperty
Field Value
DependencyProperty
SamplingUnitProperty
Identifies the SamplingUnit dependency property.
Declaration
public static readonly DependencyProperty SamplingUnitProperty
Field Value
DependencyProperty
Properties
ItemsSource
Gets or sets the ItemsSource.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
SamplingThreshold
Gets or sets the SamplingThreshold. This property defines the minimum number of items in the source, required to apply sampling.
SamplingUnit
Gets or sets the SamplingUnit. This property defines how the data is combined into groups.
Declaration
public SamplingTimeUnit SamplingUnit { get; set; }
Property Value
SamplingUnitInterval
Gets or sets the SamplingUnitInterval. Works together with SamplingUnit. It defines how many of the specified units will be treated as the same group.
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<DataPoint> GetEnumerator()
Returns
A IEnumerator<T> that can be used to iterate through the collection.
Implements