+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "FieldOverrideContext"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
draft = true
+++
## FieldOverrideContext interface
Signature
```typescript
export interface FieldOverrideContext
```
Import
```typescript
import { FieldOverrideContext } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [data](#data-property) | DataFrame[]
| |
| [dataFrameIndex](#dataframeindex-property) | number
| |
| [field](#field-property) | Field
| |
| [getSuggestions](#getsuggestions-property) | (scope?: VariableSuggestionsScope) => VariableSuggestion[]
| |
| [replaceVariables](#replacevariables-property) | InterpolateFunction
| |
### 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;
```