+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "TimeSeries"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## TimeSeries interface
Signature
```typescript
export interface TimeSeries extends QueryResultBase
```
Import
```typescript
import { TimeSeries } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [datapoints](#datapoints-property) | TimeSeriesPoints
| |
| [tags](#tags-property) | Labels
| |
| [target](#target-property) | string
| |
| [title](#title-property) | string
| If name is manually configured via an alias / legend pattern |
| [unit](#unit-property) | string
| |
### datapoints property
Signature
```typescript
datapoints: TimeSeriesPoints;
```
### tags property
Signature
```typescript
tags?: Labels;
```
### target property
Signature
```typescript
target: string;
```
### title property
If name is manually configured via an alias / legend pattern
Signature
```typescript
title?: string;
```
### unit property
Signature
```typescript
unit?: string;
```