The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/docs/sources/packages_api/data/fielddisplay.md

98 lines
1.8 KiB

+++
# -----------------------------------------------------------------------
# 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
<b>Signature</b>
```typescript
export interface FieldDisplay
```
<b>Import</b>
```typescript
import { FieldDisplay } from '@grafana/data';
```
<b>Properties</b>
| Property | Type | Description |
| --- | --- | --- |
| [colIndex](#colindex-property) | <code>number</code> | |
| [display](#display-property) | <code>DisplayValue</code> | |
| [field](#field-property) | <code>FieldConfig</code> | |
| [getLinks](#getlinks-property) | <code>() =&gt; LinkModel[]</code> | |
| [name](#name-property) | <code>string</code> | |
| [rowIndex](#rowindex-property) | <code>number</code> | |
| [sparkline](#sparkline-property) | <code>GraphSeriesValue[][]</code> | |
| [view](#view-property) | <code>DataFrameView</code> | |
### colIndex property
<b>Signature</b>
```typescript
colIndex?: number;
```
### display property
<b>Signature</b>
```typescript
display: DisplayValue;
```
### field property
<b>Signature</b>
```typescript
field: FieldConfig;
```
### getLinks property
<b>Signature</b>
```typescript
getLinks?: () => LinkModel[];
```
### name property
<b>Signature</b>
```typescript
name: string;
```
### rowIndex property
<b>Signature</b>
```typescript
rowIndex?: number;
```
### sparkline property
<b>Signature</b>
```typescript
sparkline?: GraphSeriesValue[][];
```
### view property
<b>Signature</b>
```typescript
view?: DataFrameView;
```