+++
# -----------------------------------------------------------------------
# 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
Signature
```typescript
export interface GraphSeriesXY
```
Import
```typescript
import { GraphSeriesXY } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [color](#color-property) | string
| |
| [data](#data-property) | GraphSeriesValue[][]
| |
| [info](#info-property) | DisplayValue[]
| |
| [isVisible](#isvisible-property) | boolean
| |
| [label](#label-property) | string
| |
| [seriesIndex](#seriesindex-property) | number
| |
| [timeField](#timefield-property) | Field
| |
| [timeStep](#timestep-property) | number
| |
| [valueField](#valuefield-property) | Field
| |
| [yAxis](#yaxis-property) | YAxis
| |
### color property
Signature
```typescript
color?: string;
```
### data property
Signature
```typescript
data: GraphSeriesValue[][];
```
### info property
Signature
```typescript
info?: DisplayValue[];
```
### isVisible property
Signature
```typescript
isVisible: boolean;
```
### label property
Signature
```typescript
label: string;
```
### seriesIndex property
Signature
```typescript
seriesIndex: number;
```
### timeField property
Signature
```typescript
timeField: Field;
```
### timeStep property
Signature
```typescript
timeStep: number;
```
### valueField property
Signature
```typescript
valueField: Field;
```
### yAxis property
Signature
```typescript
yAxis: YAxis;
```