igniteui-react-grids
Version:
Ignite UI React grid components.
44 lines (26 loc) • 787 B
TypeScript
/* jsonAPIPlainObject */
/* tsPlainInterface */
/* marshalByValue */
export declare class IgcSummaryResult
{
public set key(value: string);
public get key(): string;
public set label(value: string);
public get label(): string;
/* blazorAlternateName: Result */
public set summaryResult(value: any);
public get summaryResult(): any;
/**
* Apply default formatting based on the grid column type.
* ```typescript
* const result: IgxSummaryResult = {
* key: 'key',
* label: 'label',
* defaultFormatting: true
* }
* ```
*
* @memberof IgxSummaryResult
*/
public defaultFormatting?: boolean;
}