Files
grafana/docs/sources/packages_api/ui/cascaderoption.md
Marcus Andersson cc3fc18076 Docs: enable packages reference docs for 7-beta (#23953)
* added packages reference menu item.

* removed the draft flag.

* Updated docs by running script.
2020-04-28 09:53:58 +02:00

90 lines
2.0 KiB
Markdown

+++
# -----------------------------------------------------------------------
# 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. |
| [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 |
### 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
The label to display in the UI
<b>Signature</b>
```typescript
label: string;
```
### title property
Avoid using
<b>Signature</b>
```typescript
title?: string;
```
### value property
The value used under the hood
<b>Signature</b>
```typescript
value: any;
```