Skip to main content
A newer version of this page is available. .

AxisRange.SetInternalMinMaxValues(Double, Double) Method

Sets both minimum and maximum internal values of an axis range.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

public virtual void SetInternalMinMaxValues(
    double min,
    double max
)

Parameters

Name Type Description
min Double

A Double value which specifies the minimum internal value to be set.

max Double

A Double value which specifies the maximum internal value to be set.

Remarks

Call the SetInternalMinMaxValues method, to specify an axis visible range in internal numeric measurement units with no regard to the actual axis scale type.

Or, to define the visible range in the measurement units appropriate to the axis scale type, use the AxisRange.SetMinMaxValues method.

For the axis scrolling range, use the similar ScrollingRange.SetInternalMinMaxValues method.

For more information, refer to Visual Ranges and Whole Ranges .

See Also