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.
ValueMatcherInfo interface
Registry item to represent all the different valu matchers supported in the Grafana platform.
Signature
export interface ValueMatcherInfo<TOptions = any> extends RegistryItemWithOptions<TOptions>
Import
import { ValueMatcherInfo } from '@grafana/data';
Properties
Property | Type | Description |
---|---|---|
get | (options: TOptions) => ValueMatcher | |
getDefaultOptions | (field: Field) => TOptions | |
isApplicable | (field: Field) => boolean |
get property
Signature
get: (options: TOptions) => ValueMatcher;
getDefaultOptions property
Signature
getDefaultOptions: (field: Field) => TOptions;
isApplicable property
Signature
isApplicable: (field: Field) => boolean;