grafana/docs/sources/packages_api/data/reducedataoptions.md

1.5 KiB

+++

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

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

export interface ReduceDataOptions 

Import

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

Properties

Property Type Description
calcs string[] When !values, pick one value for the whole field
fields string Which fields to show. By default this is only numeric fields
limit number if showing all values limit
values boolean

calcs property

When !values, pick one value for the whole field

Signature

calcs: string[];

fields property

Which fields to show. By default this is only numeric fields

Signature

fields?: string;

limit property

if showing all values limit

Signature

limit?: number;

values property

Signature

values?: boolean;