Skip to main content

DataPointCollection.ActualArgumentScaleType Property

Gets the actual argument scale type.

Namespace: DevExpress.UI.Xaml.Charts

Assembly: DevExpress.UI.Xaml.Charts.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public ActualScaleType ActualArgumentScaleType { get; }

Property Value

Type Description
ActualScaleType

An ActualScaleType enumeration value.

Available values:

Name Description
Numerical

Identifies the Numerical data scale. This means that data provided for the DataPointCollection.Points will be treated as numerical values, and will be shown on the axis as numbers (e.g., 100, 200, and 300).

DateTime

Identifies the DateTime data scale. This means that data provided for the DataPointCollection.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).

Qualitative

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

See Also