RangeValueMatcherOptions interface

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

Signature

  1. export interface RangeValueMatcherOptions<T = any> extends ValueMatcherOptions

Import

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

Properties

PropertyTypeDescription
fromT
toT

from property

Signature

  1. from: T;

to property

Signature

  1. to: T;