igniteui-react-grids
Version:
Ignite UI React grid components.
15 lines (14 loc) • 448 B
TypeScript
import { IgrPivotValue } from "./igr-pivot-value";
import { IgrPivotDimension } from "./igr-pivot-dimension";
/**
* Interface describing the Pivot column data.
* Contains information on the related column dimensions and their values.
*/
export interface IgrPivotGridColumn {
field?: string;
/**
* List of dimensions associated with the column.*
*/
dimensions?: IgrPivotDimension[];
value?: IgrPivotValue;
}