+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "Field" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" +++ ## Field interface Signature ```typescript export interface Field> ``` Import ```typescript import { Field } from '@grafana/data'; ``` Properties | Property | Type | Description | | --- | --- | --- | | [config](#config-property) | FieldConfig | Meta info about how field and how to display it | | [display](#display-property) | DisplayProcessor | Convert a value for display | | [getLinks](#getlinks-property) | (config: ValueLinkConfig) => Array<LinkModel<Field>> | Get value data links with variables interpolated | | [labels](#labels-property) | Labels | | | [name](#name-property) | string | Name of the field (column) | | [parse](#parse-property) | (value: any) => T | Convert text to the field value | | [state](#state-property) | FieldState | null | Cached values with appropriate display and id values | | [type](#type-property) | FieldType | Field value type (string, number, etc) | | [values](#values-property) | V | | ### config property Meta info about how field and how to display it Signature ```typescript config: FieldConfig; ``` ### display property Convert a value for display Signature ```typescript display?: DisplayProcessor; ``` ### getLinks property Get value data links with variables interpolated Signature ```typescript getLinks?: (config: ValueLinkConfig) => Array>; ``` ### labels property Signature ```typescript labels?: Labels; ``` ### name property Name of the field (column) Signature ```typescript name: string; ``` ### parse property Convert text to the field value Signature ```typescript parse?: (value: any) => T; ``` ### state property Cached values with appropriate display and id values Signature ```typescript state?: FieldState | null; ``` ### type property Field value type (string, number, etc) Signature ```typescript type: FieldType; ``` ### values property Signature ```typescript values: V; ```