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

RangeValueMatcherOptions interface

Describes a range value matcher option that has a to and a from value to be able to match a range.

Signature

typescript
export interface RangeValueMatcherOptions<T = any> extends ValueMatcherOptions 

Import

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

Properties

PropertyTypeDescription
fromT
toT

from property

Signature

typescript
from: T;

to property

Signature

typescript
to: T;