Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
SelectableValue interface
Used in select elements
Signature
export interface SelectableValue<T = any>
Import
import { SelectableValue } from '@grafana/data';
Properties
Property | Type | Description |
---|---|---|
description | string | |
icon | string | |
imgUrl | string | |
label | string | |
value | T |
description property
Signature
description?: string;
icon property
Signature
icon?: string;
imgUrl property
Signature
imgUrl?: string;
label property
Signature
label?: string;
value property
Signature
value?: T;