Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
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;