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

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

Signature

export interface CascaderOption 

Import

import { CascaderOption } from '@grafana/ui';

Properties

Property Type Description
children CascaderOption[] Children will be shown in a submenu. Use 'items' instead, as 'children' exist to ensure backwards compatibility.
disabled boolean
items CascaderOption[] Items will be just flattened into the main list of items recursively.
label string The label to display in the UI
title string Avoid using
value any 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.

Signature

children?: CascaderOption[];

disabled property

Signature

disabled?: boolean;

items property

Items will be just flattened into the main list of items recursively.

Signature

items?: CascaderOption[];

label property

The label to display in the UI

Signature

label: string;

title property

Avoid using

Signature

title?: string;

value property

The value used under the hood

Signature

value: any;