SelectableValue interface

Used in select elements

Signature

  1. export interface SelectableValue<T = any>

Import

  1. import { SelectableValue } from '@grafana/data';

Properties

PropertyTypeDescription
ariaLabelstring
componentReact.ComponentType<any>
descriptionstring
iconstring
imgUrlstring
labelstring
titlestring
valueT

ariaLabel property

Signature

  1. ariaLabel?: string;

component property

Signature

  1. component?: React.ComponentType<any>;

description property

Signature

  1. description?: string;

icon property

Signature

  1. icon?: string;

imgUrl property

Signature

  1. imgUrl?: string;

label property

Signature

  1. label?: string;

title property

Signature

  1. title?: string;

value property

Signature

  1. value?: T;