Skip to main content

AxisBase.GetScaleInternalValue(Double) Method

Converts the specified numeric value to an internal numeric format of the current X-axis scale.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public double GetScaleInternalValue(
    double numericValue
)

Parameters

Name Type Description
numericValue Double

A Double value which specifies a numeric value to convert.

Returns

Type Description
Double

A Double value which represents an X-axis value in the internal format.

Remarks

The X-axis always represents any values in the internal numeric format, whether it is ScaleType.Numerical, ScaleType.Qualitative, or ScaleType.DateTime. Use the GetScaleInternalValue method to obtain an internal numerical equivalent of a numeric axis value.

For more information, refer to Axis Scale Types.

See Also