Class SamplingSettings
This class contains configuration settings for sampling in RadChart.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class SamplingSettings : DependencyObject, INotifyPropertyChanged
Constructors
SamplingSettings()
Declaration
public SamplingSettings()
Fields
SamplingFunctionProperty
Identifies the SamplingFunction dependency property.
Declaration
public static readonly DependencyProperty SamplingFunctionProperty
Field Value
System.Windows.DependencyProperty
|
SamplingThresholdProperty
Identifies the SamplingThreshold dependency property.
Declaration
public static readonly DependencyProperty SamplingThresholdProperty
Field Value
System.Windows.DependencyProperty
|
Properties
SamplingFunction
Gets or sets the function used to extract data samples.
Declaration
public ChartSamplingFunction SamplingFunction { get; set; }
Property Value
ChartSamplingFunction
The sampling function. |
SamplingThreshold
Gets or sets the samples count.
Declaration
public int SamplingThreshold { get; set; }
Property Value
System.Int32
The samples count. |
Methods
OnPropertyChanged(PropertyChangedEventArgs)
Raises the PropertyChanged event.
Declaration
protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)
Parameters
System.ComponentModel.PropertyChangedEventArgs
args
The System.ComponentModel.PropertyChangedEventArgs instance containing the event data. |
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|