UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

20 lines (19 loc) 773 B
/// <reference types="react" /> import { VisualizationInput } from "@gooddata/typings"; import { ICommonChartProps } from "./core/base/BaseChart"; export interface ITableBucketProps { measures?: VisualizationInput.AttributeOrMeasure[]; attributes?: VisualizationInput.IAttribute[]; totals?: VisualizationInput.ITotal[]; filters?: VisualizationInput.IFilter[]; sortBy?: VisualizationInput.ISort[]; } export interface ITableProps extends ICommonChartProps, ITableBucketProps { projectId: string; totalsEditAllowed?: boolean; } /** * [Table](http://sdk.gooddata.com/gooddata-ui/docs/table_component.html) * is a component with bucket props measures, attributes, totals, filters */ export declare function Table(props: ITableProps): JSX.Element;