Menu

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.

Enterprise Open source

ValueMatcherInfo interface

Registry item to represent all the different valu matchers supported in the Grafana platform.

Signature

typescript
export interface ValueMatcherInfo<TOptions = any> extends RegistryItemWithOptions<TOptions> 

Import

typescript
import { ValueMatcherInfo } from '@grafana/data';

Properties

PropertyTypeDescription
get(options: TOptions) => ValueMatcher
getDefaultOptions(field: Field) => TOptions
isApplicable(field: Field) => boolean

get property

Signature

typescript
get: (options: TOptions) => ValueMatcher;

getDefaultOptions property

Signature

typescript
getDefaultOptions: (field: Field) => TOptions;

isApplicable property

Signature

typescript
isApplicable: (field: Field) => boolean;