+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "FieldConfig"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## FieldConfig interface
Every property is optional
Plugins may extend this with additional properties. Something like series overrides
Signature
```typescript
export interface FieldConfig
```
Import
```typescript
import { FieldConfig } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [color](#color-property) | FieldColor
| |
| [custom](#custom-property) | TOptions
| |
| [decimals](#decimals-property) | number | null
| |
| [displayName](#displayname-property) | string
| |
| [filterable](#filterable-property) | boolean
| |
| [links](#links-property) | DataLink[]
| |
| [mappings](#mappings-property) | ValueMapping[]
| |
| [max](#max-property) | number | null
| |
| [min](#min-property) | number | null
| |
| [noValue](#novalue-property) | string
| |
| [nullValueMode](#nullvaluemode-property) | NullValueMode
| |
| [thresholds](#thresholds-property) | ThresholdsConfig
| |
| [unit](#unit-property) | string
| |
### color property
Signature
```typescript
color?: FieldColor;
```
### custom property
Signature
```typescript
custom?: TOptions;
```
### decimals property
Signature
```typescript
decimals?: number | null;
```
### displayName property
Signature
```typescript
displayName?: string;
```
### filterable property
Signature
```typescript
filterable?: boolean;
```
### links property
Signature
```typescript
links?: DataLink[];
```
### mappings property
Signature
```typescript
mappings?: ValueMapping[];
```
### max property
Signature
```typescript
max?: number | null;
```
### min property
Signature
```typescript
min?: number | null;
```
### noValue property
Signature
```typescript
noValue?: string;
```
### nullValueMode property
Signature
```typescript
nullValueMode?: NullValueMode;
```
### thresholds property
Signature
```typescript
thresholds?: ThresholdsConfig;
```
### unit property
Signature
```typescript
unit?: string;
```