UNPKG

@grafana/ui

Version:

Grafana Components Library

10 lines (9 loc) 366 B
import { GraphSeriesValue } from '../types/index'; import { NullValueMode, DataFrame } from '@grafana/data'; export interface FlotPairsOptions { series: DataFrame; xIndex: number; yIndex: number; nullValueMode?: NullValueMode; } export declare function getFlotPairs({ series, xIndex, yIndex, nullValueMode }: FlotPairsOptions): GraphSeriesValue[][];