Class
NormalRangeDistribution

Creates normal range distribution.

Definition

Namespace:Telerik.UI.Xaml.Controls.DataVisualization.Map

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class NormalRangeDistribution : DependencyObject, IRangeDistribution

Inheritance: objectNormalRangeDistribution

Implements: IRangeDistribution

Constructors

NormalRangeDistribution()

Declaration

cs-api-definition
public NormalRangeDistribution()

Fields

ExpectationProperty

Identifies the Expectation Expectation dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty ExpectationProperty

Field Value

DependencyProperty

VarianceProperty

Identifies the Variance Variance dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty VarianceProperty

Field Value

DependencyProperty

Properties

Expectation

Gets or sets mathematical expectation of the normal range distribution.

Declaration

cs-api-definition
public double Expectation { get; set; }

Property Value

double

Variance

Gets or sets variance of the normal range distribution.

Declaration

cs-api-definition
public double Variance { get; set; }

Property Value

double

Methods

Create(double, double, int)

Creates list of the ranges.

Declaration

cs-api-definition
public IEnumerable<MapRange> Create(double minValue, double maxValue, int tickMarkCount)

Parameters

minValue

double

Minimal value.

maxValue

double

Maximal value.

tickMarkCount

int

Number of the ranges.

Returns

IEnumerable<MapRange>

List of the ranges for given distribution.

Implements IRangeDistribution.Create(double, double, int)