+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "FieldDisplay"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## FieldDisplay interface
Signature
```typescript
export interface FieldDisplay
```
Import
```typescript
import { FieldDisplay } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [colIndex](#colindex-property) | number
| |
| [display](#display-property) | DisplayValue
| |
| [field](#field-property) | FieldConfig
| |
| [getLinks](#getlinks-property) | () => LinkModel[]
| |
| [hasLinks](#haslinks-property) | boolean
| |
| [name](#name-property) | string
| |
| [rowIndex](#rowindex-property) | number
| |
| [sparkline](#sparkline-property) | GraphSeriesValue[][]
| |
| [view](#view-property) | DataFrameView
| |
### colIndex property
Signature
```typescript
colIndex?: number;
```
### display property
Signature
```typescript
display: DisplayValue;
```
### field property
Signature
```typescript
field: FieldConfig;
```
### getLinks property
Signature
```typescript
getLinks?: () => LinkModel[];
```
### hasLinks property
Signature
```typescript
hasLinks: boolean;
```
### name property
Signature
```typescript
name: string;
```
### rowIndex property
Signature
```typescript
rowIndex?: number;
```
### sparkline property
Signature
```typescript
sparkline?: GraphSeriesValue[][];
```
### view property
Signature
```typescript
view?: DataFrameView;
```