DataTransformerConfig interface

Signature

  1. export interface DataTransformerConfig<TOptions = any>

Import

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

Properties

PropertyTypeDescription
disabledbooleanDisabled transformations are skipped
idstringUnique identifier of transformer
optionsTOptionsOptions to be passed to the transformer

disabled property

Disabled transformations are skipped

Signature

  1. disabled?: boolean;

id property

Unique identifier of transformer

Signature

  1. id: string;

options property

Options to be passed to the transformer

Signature

  1. options: TOptions;