DataTransformerConfig interface
Signature
export interface DataTransformerConfig<TOptions = any>
Import
import { DataTransformerConfig } from '@grafana/data';
Properties
Property | Type | Description |
---|---|---|
disabled | boolean | Disabled transformations are skipped |
id | string | Unique identifier of transformer |
options | TOptions | Options to be passed to the transformer |
disabled property
Disabled transformations are skipped
Signature
disabled?: boolean;
id property
Unique identifier of transformer
Signature
id: string;
options property
Options to be passed to the transformer
Signature
options: TOptions;