Class NormalRangeDistribution
Creates normal range distribution.
Inheritance
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class NormalRangeDistribution : DependencyObject, IRangeDistribution
Constructors
NormalRangeDistribution()
Declaration
public NormalRangeDistribution()
Fields
ExpectationProperty
Identifies the Expectation Expectation dependency property.
Declaration
public static readonly DependencyProperty ExpectationProperty
Field Value
System.Windows.DependencyProperty
|
VarianceProperty
Identifies the Variance Variance dependency property.
Declaration
public static readonly DependencyProperty VarianceProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Expectation
Gets or sets mathematical expectation of the normal range distribution.
Declaration
public double Expectation { get; set; }
Property Value
System.Double
|
Variance
Gets or sets variance of the normal range distribution.
Declaration
public double Variance { get; set; }
Property Value
System.Double
|
Methods
Create(Double, Double, Int32)
Creates list of the ranges.
Declaration
public IEnumerable<MapRange> Create(double minValue, double maxValue, int tickMarkCount)
Parameters
System.Double
minValue
Minimal value. |
System.Double
maxValue
Maximal value. |
System.Int32
tickMarkCount
Number of the ranges. |
Returns
System.Collections.Generic.IEnumerable<MapRange>
List of the ranges for given distribution. |