Skip to main content

ScrollingRange.SetInternalMinMaxValues(Double, Double) Method

Sets both minimum and maximum values (in internal numeric measurement units) of an axis scrolling range.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

public 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 scrolling range in internal numeric measurement units with no regard to the actual axis scale type.

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

For the axis visible range, use the similar AxisRange.SetMinMaxValues method.

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

See Also