DataTransformerInfo interface

Function that transform data frames (AKA transformer) Signature

  1. export interface DataTransformerInfo<TOptions = any> extends RegistryItemWithOptions

Import

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

Properties

PropertyTypeDescription
operator(options: TOptions) => MonoTypeOperatorFunction<DataFrame[]>Function that configures transformation and returns a transformer

operator property

Function that configures transformation and returns a transformer

Signature

  1. operator: (options: TOptions) => MonoTypeOperatorFunction<DataFrame[]>;