ValueMatcherInfo interface

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

Signature

  1. export interface ValueMatcherInfo<TOptions = any> extends RegistryItemWithOptions<TOptions>

Import

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

Properties

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

get property

Signature

  1. get: (options: TOptions) => ValueMatcher;

getDefaultOptions property

Signature

  1. getDefaultOptions: (field: Field) => TOptions;

isApplicable property

Signature

  1. isApplicable: (field: Field) => boolean;