IValueDistribution
Interface
Interface which converts real scale value (given as value between Min and Max property of the scale) to the relative value (value in the [0...1] interval) which will represent relative position of the value along the scale and vice versa. It also will be able to calculate value for the tick mark using its index and total number of ticks.
Definition
Namespace:Telerik.Windows.Controls.Gauge
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
C#
public interface IValueDistribution
Derived Classes:
Methods
Calculate scale specific metrics which can be used to perform other calculations.
Get value at the tick position.
C#
double GetValueAtTick(GraphicScale scale, int majorTickIndex, int middleTickIndex, int minorTickIndex)
Scale object.
majorTickIndexintMajorTick index.
middleTickIndexintMiddleTick index.
minorTickIndexintMinorTick index.
Returns:Absolute value at the tick position.