FieldConfigEditorProps interface

Signature

  1. export interface FieldConfigEditorProps<TValue, TSettings> extends Omit<StandardEditorProps<TValue, TSettings>, 'item'>

Import

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

Properties

PropertyTypeDescription
contextFieldOverrideContext
itemFieldConfigPropertyItem<any, TValue, TSettings>
onChange(value?: TValue) => void
valueTValue

context property

Signature

  1. context: FieldOverrideContext;

item property

Signature

  1. item: FieldConfigPropertyItem<any, TValue, TSettings>;

onChange property

Signature

  1. onChange: (value?: TValue) => void;

value property

Signature

  1. value: TValue;