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

SeriesBaseModel.ArgumentScaleType Property

Gets or sets the value of the SeriesBase.ArgumentScaleType within the model.

Namespace: DevExpress.XtraCharts.Designer

Assembly: DevExpress.XtraCharts.v18.2.Wizard.dll

Declaration

[LocalizableCategory(DesignerCategories.Behavior)]
public ScaleType ArgumentScaleType { get; set; }

Property Value

Type Description
ScaleType

The type of the argument scale.

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 AxisBase.DateTimeOptions property is used to define the output format of DateTime values shown on the axis.

Auto

The scale type is automatically determined according to the real type of underlying data.

See Also