+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "ReduceDataOptions"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## ReduceDataOptions interface
Options for how to turn DataFrames into an array of display values
Signature
```typescript
export interface ReduceDataOptions
```
Import
```typescript
import { ReduceDataOptions } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [calcs](#calcs-property) | string[]
| When !values, pick one value for the whole field |
| [fields](#fields-property) | string
| Which fields to show. By default this is only numeric fields |
| [limit](#limit-property) | number
| if showing all values limit |
| [values](#values-property) | boolean
| |
### calcs property
When !values, pick one value for the whole field
Signature
```typescript
calcs: string[];
```
### fields property
Which fields to show. By default this is only numeric fields
Signature
```typescript
fields?: string;
```
### limit property
if showing all values limit
Signature
```typescript
limit?: number;
```
### values property
Signature
```typescript
values?: boolean;
```