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

Creates logarithmic range distribution.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class LogarithmicRangeDistribution : DependencyObject, IRangeDistribution

Inheritance: objectLogarithmicRangeDistribution

Implements: IRangeDistribution

Constructors

C#
public LogarithmicRangeDistribution()

Fields

LogarithmicBaseProperty

DependencyProperty

Identifies the LogarithmicBase LogarithmicBase dependency property.

C#
public static readonly DependencyProperty LogarithmicBaseProperty

Properties

Gets or sets logarithmic base of the logarithmic range distribution.

C#
public double LogarithmicBase { 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)