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

Represents default distribution which is represented by logarithmic function.

Definition

Namespace:Telerik.Windows.Controls.Gauge

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class ClassicLogarithmicDistribution : LogarithmicDistributionBase, IValueDistribution

Inheritance: objectLogarithmicDistributionBaseClassicLogarithmicDistribution

Implements: IValueDistribution

Inherited Members LogarithmicDistributionBase.CalculateScaleMetrics(GraphicScale)LogarithmicDistributionBase.GetValueAtTick(GraphicScale, int, int, int)LogarithmicDistributionBase.LogarithmicBase

Constructors

C#
public ClassicLogarithmicDistribution()

Methods

Gets absolute value for given relative value.

C#
public override double GetAbsoluteValue(double min, double max, double relativeValue)
Parameters:mindouble

Minimal scale value.

maxdouble

Maximal scale value.

relativeValuedouble

Relative value.

Returns:

double

Absolute value.

Overrides: LogarithmicDistributionBase.GetAbsoluteValue(double, double, double)

Gets relative value for given absolute value.

C#
public override double GetRelativeValue(double min, double max, double absoluteValue)
Parameters:mindouble

Minimal scale value.

maxdouble

Maximal scale value.

absoluteValuedouble

Absolute value.

Returns:

double

Relative value.

Overrides: LogarithmicDistributionBase.GetRelativeValue(double, double, double)