SelectableValue interface
Used in select elements
Signature
export interface SelectableValue<T = any>
Import
import { SelectableValue } from '@grafana/data';
Properties
Property | Type | Description |
---|---|---|
ariaLabel | string | |
component | React.ComponentType<any> | |
description | string | |
icon | string | |
imgUrl | string | |
label | string | |
title | string | |
value | T |
ariaLabel property
Signature
ariaLabel?: string;
component property
Signature
component?: React.ComponentType<any>;
description property
Signature
description?: string;
icon property
Signature
icon?: string;
imgUrl property
Signature
imgUrl?: string;
label property
Signature
label?: string;
title property
Signature
title?: string;
value property
Signature
value?: T;