CSVParseCallbacks interface

Signature

  1. export interface CSVParseCallbacks

Import

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

Properties

PropertyTypeDescription
onHeader(fields: Field[]) => voidGet a callback before any rows are processed This can return a modified table to force any Column configurations
onRow(row: any[]) => void

onHeader property

Get a callback before any rows are processed This can return a modified table to force any Column configurations

Signature

  1. onHeader: (fields: Field[]) => void;

onRow property

Signature

  1. onRow: (row: any[]) => void;