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.
DataTransformerInfo interface
Function that transform data frames (AKA transformer)
Signature
export interface DataTransformerInfo<TOptions = any> extends RegistryItemWithOptions
Import
import { DataTransformerInfo } from '@grafana/data';
Properties
Property | Type | Description |
---|---|---|
operator | (options: TOptions) => MonoTypeOperatorFunction<DataFrame[]> | Function that configures transformation and returns a transformer |
operator property
Function that configures transformation and returns a transformer
Signature
operator: (options: TOptions) => MonoTypeOperatorFunction<DataFrame[]>;