Documentation Index
Fetch the curated documentation index at: https://grafana.com/llms.txt
Fetch the complete documentation index at: https://grafana.com/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: https://grafana.com/docs/grafana/v7.5/packages_api/data/field.md (append .md) or send Accept: text/markdown to https://grafana.com/docs/grafana/v7.5/packages_api/data/field/. For the curated documentation index, use https://grafana.com/llms.txt. For the complete documentation index, use https://grafana.com/llms-full.txt.
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.
Field interface
Signature
export interface Field<T = any, V = Vector<T>> Import
import { Field } from '@grafana/data';Properties
| Property | Type | Description |
|---|---|---|
| config | FieldConfig | Meta info about how field and how to display it |
| display | DisplayProcessor | Convert a value for display |
| getLinks | (config: ValueLinkConfig) => Array<LinkModel<Field>> | Get value data links with variables interpolated |
| labels | Labels | |
| name | string | Name of the field (column) |
| parse | (value: any) => T | Convert text to the field value |
| state | FieldState | null | Cached values with appropriate display and id values |
| type | FieldType | Field value type (string, number, etc) |
| values | V |
config property
Meta info about how field and how to display it
Signature
config: FieldConfig;display property
Convert a value for display
Signature
display?: DisplayProcessor;getLinks property
Get value data links with variables interpolated
Signature
getLinks?: (config: ValueLinkConfig) => Array<LinkModel<Field>>;labels property
Signature
labels?: Labels;name property
Name of the field (column)
Signature
name: string;parse property
Convert text to the field value
Signature
parse?: (value: any) => T;state property
Cached values with appropriate display and id values
Signature
state?: FieldState | null;type property
Field value type (string, number, etc)
Signature
type: FieldType;values property
Signature
values: V;