The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/docs/sources/packages_api/data/paneldata.md

2.1 KiB

+++

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

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

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

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

PanelData interface

Signature

export interface PanelData 

Import

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

Properties

Property Type Description
error DataQueryError Any query errors
request DataQueryRequest Request contains the queries and properties sent to the datasource
series DataFrame[] Contains data frames with field overrides applied
state LoadingState State of the data (loading, done, error, streaming)
timeRange TimeRange Contains the range from the request or a shifted time range if a request uses relative time
timings DataQueryTimings Timing measurements

error property

Any query errors

Signature

error?: DataQueryError;

request property

Request contains the queries and properties sent to the datasource

Signature

request?: DataQueryRequest;

series property

Contains data frames with field overrides applied

Signature

series: DataFrame[];

state property

State of the data (loading, done, error, streaming)

Signature

state: LoadingState;

timeRange property

Contains the range from the request or a shifted time range if a request uses relative time

Signature

timeRange: TimeRange;

timings property

Timing measurements

Signature

timings?: DataQueryTimings;