NumberColumn resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
The numberColumn on a columnDefinition resource indicates that the column's values are numbers.
JSON representation
Here is a JSON representation of a numberColumn resource.
{
"decimalPlaces": "automatic | none | one | two | three | four | five",
"displayAs": "number | percentage",
"maximum": 10.551,
"minimum": 99.993
}
Properties
Property | Type | Description |
---|---|---|
decimalPlaces | string | How many decimal places to display. See below for information about the possible values. |
displayAs | string | How the value should be presented in the UX. Must be one of number or percentage . If unspecified, treated as number . |
maximum | double | The maximum permitted value. |
minimum | double | The minimum permitted value. |
DecimalPlaces values
Value | Description |
---|---|
automatic | Default. Automatically display decimal places as needed. |
none | Do not display any decimal places. |
one | Always display one decimal place. |
two | Always display two decimal places. |
three | Always display three decimal places. |
four | Always display four decimal places. |
five | Always display five decimal places. |
Note: decimalPlaces and displayAs apply to how numbers are rendered, not stored. These properties may be updated.