+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "FieldDisplay" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" draft = true +++ ## 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 | | | [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; ``` ### name property Signature ```typescript name: string; ``` ### rowIndex property Signature ```typescript rowIndex?: number; ``` ### sparkline property Signature ```typescript sparkline?: GraphSeriesValue[][]; ``` ### view property Signature ```typescript view?: DataFrameView; ```