grafana/docs/sources/packages_api/data/readwritevector.md

865 B

+++

-----------------------------------------------------------------------

Do not edit this file. It is automatically generated by API Documenter.

-----------------------------------------------------------------------

title = "ReadWriteVector" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" +++

ReadWriteVector interface

Apache arrow vectors are Read/Write

Signature

export interface ReadWriteVector<T = any> extends Vector<T> 

Import

import { ReadWriteVector } from '@grafana/data';

Properties

Property Type Description
set (index: number, value: T) => void

set property

Signature

set: (index: number, value: T) => void;