CalculatedFieldType Enum
Lists values used to specify the type of calculated field.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v24.1.Core.dll
NuGet Package: DevExpress.Dashboard.Core
Declaration
Members
Name | Description |
---|---|
String
|
The field returns a String value (the String type). |
Integer
|
The field returns an Integer value (the Int32 type). |
Decimal
|
The field returns a Decimal value (the Decimal type). |
Boolean
|
The field returns a Boolean value (the Boolean type). |
DateTime
|
The field returns a date-time value (the DateTime type). |
Object
|
The field returns a value of any type. |
Auto
|
A field type is detected automatically based on the type of values returned by CalculatedField.Expression. |
Double
|
The field returns a Double value (the Double type). |
See Also