Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
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;