@syncfusion/ej2-vue-grids
Version:
Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue
29 lines (28 loc) • 804 B
TypeScript
export declare let AggregateColumnsDirective: any;
export declare const AggregateColumnsPlugin: {
name: string;
install(Vue: any): void;
};
/**
* `e-aggregate->e-column` directive represent a aggregate column of the VueJS Grid.
* ```vue
* <ejs-grid :dataSource='data' allowPaging='true' allowSorting='true'>
* <e-columns>
* <e-column field='ID' width='100'/>
* <e-column field='name' headerText='Name' width='100'/>
* </e-columns>
* <e-aggregates>
* <e-aggregate>
* <e-columns>
* <e-column field='ID' type='Min'/>
* </e-columns>
* </e-aggregate>
* </e-aggregates>
* </ejs-grid>
* ```
*/
export declare let AggregateColumnDirective: any;
export declare const AggregateColumnPlugin: {
name: string;
install(Vue: any): void;
};