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

AxisRange.MinValueInternal Property

OBSOLETE

This property is obsolete now. Use AxisBase.VisualRange.MinValueInternal instead.

Gets or sets the internal float representation of the range minimum value.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[Obsolete("This property is obsolete now. Use AxisBase.VisualRange.MinValueInternal instead.")]
[Browsable(false)]
[XtraSerializableProperty]
[NonTestableProperty]
public virtual double MinValueInternal { get; set; }

Property Value

Type Description
Double

A Double value which specifies the internal representation of the range minimum value.

Remarks

Use the MinValueInternal property to specify or obtain the internal float representation of the AxisRange.MinValue property.This setting affects the series placement along the chart axis.

When automatic range setting is switched off (the AxisRange.Auto property is false), a modification of the MinValueInternal property results in the AxisRange.MinValue property being set tonull value for Qualitative and DateTime scales.

Note

Although the MinValueInternal property is intended for a precise range adjustment (when the DateTime or Qualitative scale types are used), it isn’t possible to achieve the utmost level of accuracy using this property, when the AxisRange.SideMarginsEnabled property is turned on. In this case, it becomes impossible to precisely determine the actual minimum value of an axis, due to the ambiguity introduced by the side-margins span.

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

See Also