RangeValueMatcherOptions interface
Describes a range value matcher option that has a to and a from value to be able to match a range.
Signature
export interface RangeValueMatcherOptions<T = any> extends ValueMatcherOptions
Import
import { RangeValueMatcherOptions } from '@grafana/data';
Properties
Property | Type | Description |
---|---|---|
from | T | |
to | T |
from property
Signature
from: T;
to property
Signature
to: T;