Vector interface

Signature

  1. export interface Vector<T = any>

Import

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

Properties

PropertyTypeDescription
lengthnumber

Methods

MethodDescription
get(index)Access the value by index (Like an array)
toArray()Get the results as an array.

length property

Signature

  1. length: number;

get method

Access the value by index (Like an array)

Signature

  1. get(index: number): T;

Parameters

ParameterTypeDescription
indexnumber

Returns:

T

toArray method

Get the results as an array.

Signature

  1. toArray(): T[];

Returns:

T[]