Skip to main content

TcxGridChartHistogramAxisValue.MinMaxValues Property

Specifies the display range type for the value axis.

Declaration

property MinMaxValues: TcxGridChartHistogramMinMaxValues read; write; default mmvZeroBasedAuto;

Property Value

Type Default Description
TcxGridChartHistogramMinMaxValues mmvZeroBasedAuto

The axis display range type.

Remarks

Options include:

Value

Description

Example

mmvZeroBasedAuto (default)

The display range is calculated automatically based on chart values. The value axis displays zero-based chart values.

VCL Data Grid: A Zero-Based Automatic Scale

mmvAuto

The display range is calculated automatically based on chart values.

VCL Data Grid: An Automatic Scale

mmvCustom

The upper and lower limits of the display range can be set via the MaxValue and MinValue properties.

The following image displays a value axis restricted to the range of 10000 – 30000.

VCL Data Grid: A Custom Scale

Default Value

The MinMaxValues property’s default value is mmvZeroBasedAuto.

See Also