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

BootstrapPieChartSeries.ArgumentType Property

Specifies the required type for series arguments.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v18.2.dll

Declaration

[DefaultValue(ChartDataType.Auto)]
public ChartDataType ArgumentType { get; set; }

Property Value

Type Default Description
ChartDataType **Auto**

One of the ChartDataType enumeration values.

Available values:

Name Description
Auto

The data type is determined automatically.

Numeric

A chart displays values of a numeric type.

DateTime

A chart displays values of a data or time type.

String

A chart displays values of the string type.

Remarks

The series arguments have the same type as the values of a corresponding data source field, by default. If the data source field values are numeric, the series arguments will also be numeric, etc. However, you can convert the data source values to another type. In this instance, specify the required type using the ArgumentType property.

See Also