FieldDTO interface

Like a field, but properties are optional and values may be a simple array

Signature

  1. export interface FieldDTO<T = any>

Import

  1. import { FieldDTO } from '@grafana/data';

Properties

PropertyTypeDescription
configFieldConfig
labelsLabels
namestring
typeFieldType
valuesVector<T> | T[]

config property

Signature

  1. config?: FieldConfig;

labels property

Signature

  1. labels?: Labels;

name property

Signature

  1. name: string;

type property

Signature

  1. type?: FieldType;

values property

Signature

  1. values?: Vector<T> | T[];