Interface IRangeDistribution
Interface which must be implemented by all classes which produce ranges distribution.
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public interface IRangeDistribution
Methods
Create(Double, Double, Int32)
Creates list of the ranges.
Declaration
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. |