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.
DataFrameView class
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
This abstraction will present the contents of a DataFrame as if it were a well typed javascript object Vector.
Signature
export declare class DataFrameView<T = any> extends FunctionalVector<T>
Import
import { DataFrameView } from '@grafana/data';
Remarks
The DataFrameView.get() is optimized for use in a loop and will return same object. See function for more details.
Constructors
Properties
Methods
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
constructor(data)
Constructs a new instance of the DataFrameView
class
Signature
constructor(data: DataFrame);
Parameters
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
dataFrame property
Signature
get dataFrame(): DataFrame;
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
fields property
Signature
readonly fields: {
readonly [Property in keyof T]: Field<T[Property]>;
};
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
length property
Signature
get length(): number;
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
get method
The contents of the object returned from this function are optimized for use in a loop. All calls return the same object but the index has changed.
Signature
get(idx: number): T;
Parameters
Returns:
T
Example
// `first`, `second` and `third` will all point to the same contents at index 2:
const first = view.get(0);
const second = view.get(1);
const third = view.get(2);
// If you need three different objects, consider something like:
const first = { ...view.get(0) };
const second = { ...view.get(1) };
const third = { ...view.get(2) };
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
getFieldDisplayProcessor method
Helper function to return the DisplayProcessor for a given field column.
Signature
getFieldDisplayProcessor(colIndex: number): DisplayProcessor | undefined;
Parameters
Returns:
DisplayProcessor | undefined
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
toArray method
Signature
toArray(): T[];
Returns:
T[]