@syncfusion/ej2-vue-treegrid
Version:
Essential JS 2 TreeGrid Component for Vue
31 lines (30 loc) • 981 B
TypeScript
import { DefineVueDirective } from '@syncfusion/ej2-vue-base';
import { AggregateColumnModel } from '@syncfusion/ej2-treegrid';
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 TreeGrid.
* ```vue
* <ejs-treegrid :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-treegrid>
* ```
*/
export declare let AggregateColumnDirective: DefineVueDirective<AggregateColumnModel>;
export declare const AggregateColumnPlugin: {
name: string;
install(Vue: any): void;
};