Represents base distribution which is represented by logarithmic function.
Definition
Namespace:Telerik.Windows.Controls.Gauge
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
C#
public abstract class LogarithmicDistributionBase : IValueDistribution
Inheritance: objectLogarithmicDistributionBase
Derived Classes:
Implements:
Constructors
Initializes a new instance of the LogarithmicDistributionBase class.
C#
protected LogarithmicDistributionBase()
Properties
Gets or sets logarithmic base of the distribution.
C#
public double LogarithmicBase { get; set; }
Methods
Calculate scale specific metrics which can be used to perform other calculations.
C#
public virtual void CalculateScaleMetrics(GraphicScale scale)
Scale object.
Implements:
Get value at the tick position.
C#
public virtual 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.
Implements: