New to Telerik UI for WPFStart a free 30-day trial

Creates exponential range distribution.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class ExponentialRangeDistribution : DependencyObject, IRangeDistribution

Inheritance: objectExponentialRangeDistribution

Implements: IRangeDistribution

Constructors

C#
public ExponentialRangeDistribution()

Fields

PowerBaseProperty

DependencyProperty

Identifies the PowerBase PowerBase dependency property.

C#
public static readonly DependencyProperty PowerBaseProperty

Properties

Gets or sets power base of the exponential range distribution.

C#
public double PowerBase { get; set; }

Methods

Creates list of the ranges.

C#
public IEnumerable<MapRange> Create(double minValue, double maxValue, int tickMarkCount)
Parameters:minValuedouble

Minimal value.

maxValuedouble

Maximal value.

tickMarkCountint

Number of the ranges.

Returns:

IEnumerable<MapRange>

List of the ranges for given distribution.

Implements: IRangeDistribution.Create(double, double, int)