| author | spgraph-docs-team |
|---|---|
| ms.date | 09/11/2017 |
| title | ChoiceColumn |
| ms.localizationpriority | medium |
| description | The choiceColumn on a columnDefinition resource indicates that the column's values can be selected from a list of choices. |
| ms.subservice | sharepoint |
| doc_type | resourcePageType |
Namespace: microsoft.graph
The choiceColumn on a columnDefinition resource indicates that the column's values can be selected from a list of choices.
Here is a JSON representation of a choiceColumn resource.
{
"allowTextEntry": true,
"choices": ["red", "blue", "green"],
"displayAs": "checkBoxes | dropDownMenu | radioButtons"
}| Property name | Type | Description |
|---|---|---|
| allowTextEntry | Boolean | If true, allows custom values that aren't in the configured choices. |
| choices | collection(string) | The list of values available for this column. |
| displayAs | string | How the choices are to be presented in the UX. Must be one of checkBoxes, dropDownMenu, or radioButtons |