2020-02-26 17:03:53 +08:00
+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "CascaderOption"
keywords = ["grafana","documentation","sdk","@grafana/ui"]
type = "docs"
+++
## CascaderOption interface
< b > Signature< / b >
```typescript
export interface CascaderOption
```
< b > Import< / b >
```typescript
import { CascaderOption } from '@grafana/ui';
```
< b > Properties< / b >
| Property | Type | Description |
| --- | --- | --- |
| [children ](#children-property ) | < code > CascaderOption[]</ code > | Children will be shown in a submenu. Use 'items' instead, as 'children' exist to ensure backwards compatibility. |
| [disabled ](#disabled-property ) | < code > boolean</ code > | |
| [items ](#items-property ) | < code > CascaderOption[]</ code > | Items will be just flattened into the main list of items recursively. |
2020-04-21 16:41:50 +08:00
| [label ](#label-property ) | < code > string</ code > | The label to display in the UI |
| [title ](#title-property ) | < code > string</ code > | Avoid using |
| [value ](#value-property ) | < code > any</ code > | The value used under the hood |
2020-02-26 17:03:53 +08:00
### children property
Children will be shown in a submenu. Use 'items' instead, as 'children' exist to ensure backwards compatibility.
< b > Signature< / b >
```typescript
children?: CascaderOption[];
```
### disabled property
< b > Signature< / b >
```typescript
disabled?: boolean;
```
### items property
Items will be just flattened into the main list of items recursively.
< b > Signature< / b >
```typescript
items?: CascaderOption[];
```
### label property
2020-04-21 16:41:50 +08:00
The label to display in the UI
2020-02-26 17:03:53 +08:00
< b > Signature< / b >
```typescript
label: string;
```
### title property
2020-04-21 16:41:50 +08:00
Avoid using
2020-02-26 17:03:53 +08:00
< b > Signature< / b >
```typescript
title?: string;
```
### value property
2020-04-21 16:41:50 +08:00
The value used under the hood
2020-02-26 17:03:53 +08:00
< b > Signature< / b >
```typescript
value: any;
```