Files
grafana/docs/sources/packages_api/data/fieldconfigpropertyitem.md
T
Marcus Andersson cc3fc18076 Docs: enable packages reference docs for 7-beta (#23953)
* added packages reference menu item.

* removed the draft flag.

* Updated docs by running script.
2020-04-28 09:53:58 +02:00

64 lines
1.8 KiB
Markdown

+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "FieldConfigPropertyItem"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## FieldConfigPropertyItem interface
<b>Signature</b>
```typescript
export interface FieldConfigPropertyItem<TOptions = any, TValue = any, TSettings extends {} = any> extends OptionsEditorItem<TOptions, TSettings, FieldConfigEditorProps<TValue, TSettings>, TValue>
```
<b>Import</b>
```typescript
import { FieldConfigPropertyItem } from '@grafana/data';
```
<b>Properties</b>
| Property | Type | Description |
| --- | --- | --- |
| [isCustom](#iscustom-property) | <code>boolean</code> | true for plugin field config properties |
| [override](#override-property) | <code>ComponentType&lt;FieldOverrideEditorProps&lt;TValue, TSettings&gt;&gt;</code> | |
| [process](#process-property) | <code>(value: any, context: FieldOverrideContext, settings?: TSettings) =&gt; TValue &#124; undefined &#124; null</code> | |
| [shouldApply](#shouldapply-property) | <code>(field: Field) =&gt; boolean</code> | |
### isCustom property
true for plugin field config properties
<b>Signature</b>
```typescript
isCustom?: boolean;
```
### override property
<b>Signature</b>
```typescript
override: ComponentType<FieldOverrideEditorProps<TValue, TSettings>>;
```
### process property
<b>Signature</b>
```typescript
process: (value: any, context: FieldOverrideContext, settings?: TSettings) => TValue | undefined | null;
```
### shouldApply property
<b>Signature</b>
```typescript
shouldApply: (field: Field) => boolean;
```