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

FieldOverrideContext interface

Signature

typescript
export interface FieldOverrideContext 

Import

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

Properties

PropertyTypeDescription
dataDataFrame[]
dataFrameIndexnumber
fieldField
getSuggestions(scope?: VariableSuggestionsScope) => VariableSuggestion[]
replaceVariablesInterpolateFunction

data property

Signature

typescript
data: DataFrame[];

dataFrameIndex property

Signature

typescript
dataFrameIndex?: number;

field property

Signature

typescript
field?: Field;

getSuggestions property

Signature

typescript
getSuggestions?: (scope?: VariableSuggestionsScope) => VariableSuggestion[];

replaceVariables property

Signature

typescript
replaceVariables?: InterpolateFunction;