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

Series.ValueScaleType Property

Gets or sets a value that specifies the scale type of series points’ values.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v19.1.dll

Declaration

public ScaleType ValueScaleType { get; set; }

Property Value

Type Description
ScaleType

A ScaleType enumeration value, which specifies the values type.

Available values:

Name Description
Qualitative

Identifies the Qualitative data scale. This means that data provided for the Series.Points will be treated as qualitative values, and will be shown on the axis as textual representations (e.g., A, B, and C).

Numerical

Identifies the Numerical data scale. This means that data provided for the Series.Points will be treated as numerical values, and will be shown on the axis as numbers (e.g., 100, 200, and 300). Note that in this case, the AxisBase.NumericOptions property is used to define the output format of numerical values shown on the axis.

DateTime

Identifies the DateTime data scale. This means that data provided for the Series.Points will be treated as DateTime values, and will be shown on the axis as DateTime values (e.g., January, 2003, January, 2004, and January, 2005). Note that in this case, the Axis.DateTimeOptions property is used to define the output format of DateTime values shown on the axis.

Auto

A scale type is detected automatically based on the type of underlying data. This means that numerical data will be treated as numerical, date-time data as date-time, qualitative as qualitative values.

Note that this mode can be applied only for the Series.ArgumentScaleType property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ValueScaleType 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