Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

SparklineVerticalAxis.MinScaleType Property

Gets or sets a value that specifies the way to calculate the minimum value of the vertical axis for the sparkline group.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

SparklineAxisScaling MinScaleType { get; set; }

Property Value

Type Description
SparklineAxisScaling

A SparklineAxisScaling enumeration value that specifies how to evaluate the minimum value of the axis.

Remarks

Use the MinScaleType and SparklineVerticalAxis.MaxScaleType properties to specify whether all sparklines in the group have the same scale value (SparklineAxisScaling.Group), or it should be calculated individually for each sparkline in the group (SparklineAxisScaling.Individual).

You can also set the minimum and maximum axis values to your own custom values (SparklineAxisScaling.Custom) by using the SparklineVerticalAxis.MinCustomValue and SparklineVerticalAxis.MaxCustomValue properties.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MinScaleType property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also