InterfaceIRangeDistribution
Interface
Interface which must be implemented by all classes which produce ranges distribution.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
cs-api-definition
public interface IRangeDistribution
Methods
Create(double, double, int)
Creates list of the ranges.
Declaration
cs-api-definition
IEnumerable<MapRange> Create(double minValue, double maxValue, int tickMarkCount)
Parameters
minValue
Minimal value.
maxValue
Maximal value.
tickMarkCount
Number of the ranges.
Returns
List of the ranges for given distribution.