mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 08:42:15 +08:00

* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
118 lines
2.1 KiB
Markdown
118 lines
2.1 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "GraphSeriesXY"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## GraphSeriesXY interface
|
|
|
|
View model projection of a series
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface GraphSeriesXY
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { GraphSeriesXY } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [color](#color-property) | <code>string</code> | |
|
|
| [data](#data-property) | <code>GraphSeriesValue[][]</code> | |
|
|
| [info](#info-property) | <code>DisplayValue[]</code> | |
|
|
| [isVisible](#isvisible-property) | <code>boolean</code> | |
|
|
| [label](#label-property) | <code>string</code> | |
|
|
| [seriesIndex](#seriesindex-property) | <code>number</code> | |
|
|
| [timeField](#timefield-property) | <code>Field</code> | |
|
|
| [timeStep](#timestep-property) | <code>number</code> | |
|
|
| [valueField](#valuefield-property) | <code>Field</code> | |
|
|
| [yAxis](#yaxis-property) | <code>YAxis</code> | |
|
|
|
|
### color property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
color?: string;
|
|
```
|
|
|
|
### data property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
data: GraphSeriesValue[][];
|
|
```
|
|
|
|
### info property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
info?: DisplayValue[];
|
|
```
|
|
|
|
### isVisible property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
isVisible: boolean;
|
|
```
|
|
|
|
### label property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
label: string;
|
|
```
|
|
|
|
### seriesIndex property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
seriesIndex: number;
|
|
```
|
|
|
|
### timeField property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
timeField: Field;
|
|
```
|
|
|
|
### timeStep property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
timeStep: number;
|
|
```
|
|
|
|
### valueField property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
valueField: Field;
|
|
```
|
|
|
|
### yAxis property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
yAxis: YAxis;
|
|
```
|