The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/docs/sources/packages_api/ui/cascaderoption.md

89 lines
2.0 KiB

+++
# -----------------------------------------------------------------------
# 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;
```